type github.com/jackc/pgx/v5/pgconn.Notification

7 uses

	github.com/jackc/pgx/v5/pgconn (current package)
		pgconn.go#L42: type Notification struct {
		pgconn.go#L74: type NotificationHandler func(*PgConn, *Notification)
		pgconn.go#L644: 			pgConn.config.OnNotification(pgConn, &Notification{PID: msg.PID, Channel: msg.Channel, Payload: msg.Payload})

	github.com/jackc/pgx/v5
		conn.go#L80: 	notifications []*pgconn.Notification
		conn.go#L409: func (c *Conn) bufferNotifications(_ *pgconn.PgConn, n *pgconn.Notification) {
		conn.go#L415: func (c *Conn) WaitForNotification(ctx context.Context) (*pgconn.Notification, error) {
		conn.go#L416: 	var n *pgconn.Notification