PostgreSQL Source Code git master
Loading...
Searching...
No Matches
libpq-events.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * libpq-events.h
4 * This file contains definitions that are useful to applications
5 * that invoke the libpq "events" API, but are not interesting to
6 * ordinary users of libpq.
7 *
8 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
9 * Portions Copyright (c) 1994, Regents of the University of California
10 *
11 * src/interfaces/libpq/libpq-events.h
12 *
13 *-------------------------------------------------------------------------
14 */
15
16#ifndef LIBPQ_EVENTS_H
17#define LIBPQ_EVENTS_H
18
19#include "libpq-fe.h"
20
21#ifdef __cplusplus
22extern "C"
23{
24#endif
25
26/* Callback Event Ids */
36
37typedef struct
38{
41
42typedef struct
43{
46
47typedef struct
48{
51
57
58typedef struct
59{
60 const PGresult *src;
63
64typedef struct
65{
68
69typedef int (*PGEventProc) (PGEventId evtId, void *evtInfo, void *passThrough);
70
71/* Registers an event proc with the given PGconn. */
73 const char *name, void *passThrough);
74
75/* Sets the PGconn instance data for the provided proc to data. */
76extern int PQsetInstanceData(PGconn *conn, PGEventProc proc, void *data);
77
78/* Gets the PGconn instance data for the provided proc. */
79extern void *PQinstanceData(const PGconn *conn, PGEventProc proc);
80
81/* Sets the PGresult instance data for the provided proc to data. */
82extern int PQresultSetInstanceData(PGresult *result, PGEventProc proc, void *data);
83
84/* Gets the PGresult instance data for the provided proc. */
85extern void *PQresultInstanceData(const PGresult *result, PGEventProc proc);
86
87/* Fires RESULTCREATE events for an application-created PGresult. */
89
90#ifdef __cplusplus
91}
92#endif
93
94#endif /* LIBPQ_EVENTS_H */
PGEventId
@ PGEVT_RESULTDESTROY
@ PGEVT_RESULTCREATE
@ PGEVT_CONNDESTROY
@ PGEVT_RESULTCOPY
@ PGEVT_CONNRESET
@ PGEVT_REGISTER
int PQresultSetInstanceData(PGresult *result, PGEventProc proc, void *data)
int PQfireResultCreateEvents(PGconn *conn, PGresult *res)
int PQregisterEventProc(PGconn *conn, PGEventProc proc, const char *name, void *passThrough)
int(* PGEventProc)(PGEventId evtId, void *evtInfo, void *passThrough)
void * PQresultInstanceData(const PGresult *result, PGEventProc proc)
int PQsetInstanceData(PGconn *conn, PGEventProc proc, void *data)
void * PQinstanceData(const PGconn *conn, PGEventProc proc)
const void * data
static int fb(int x)
PGconn * conn
Definition streamutil.c:52
const PGresult * src
const char * name