PQsetNoticeProcessor method

PQnoticeProcessor PQsetNoticeProcessor(
  1. Pointer<PGconn> conn,
  2. PQnoticeProcessor proc,
  3. Pointer<Void> arg
)

Implementation

PQnoticeProcessor PQsetNoticeProcessor(
  ffi.Pointer<PGconn> conn,
  PQnoticeProcessor proc,
  ffi.Pointer<ffi.Void> arg,
) {
  return _PQsetNoticeProcessor(
    conn,
    proc,
    arg,
  );
}