github.com/jackc/pgx/v5/pgconn.Notification.Channel (field)

6 uses

	github.com/jackc/pgx/v5/pgconn (current package)
		pgconn.go#L644: 			pgConn.config.OnNotification(pgConn, &Notification{PID: msg.PID, Channel: msg.Channel, Payload: msg.Payload})

	github.com/jackc/pgx/v5/pgproto3
		notification_response.go#L13: 	Channel string
		notification_response.go#L43: 	*dst = NotificationResponse{PID: pid, Channel: channel, Payload: payload}
		notification_response.go#L51: 	dst = append(dst, src.Channel...)
		notification_response.go#L68: 		Channel: src.Channel,
		trace.go#L295: 		fmt.Fprintf(t.buf, "\t %d %s %s", msg.PID, traceDoubleQuotedString([]byte(msg.Channel)), traceDoubleQuotedString([]byte(msg.Payload)))