Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Notification

import type { Notification } from "https://raw.githubusercontent.com/jakajancar/pgc4d/master/src/mod.ts";

A notification received as a consequence of using LISTEN.

interface Notification {
channel: string;
payload: string;
sender: number;
}

§Properties

§
channel: string
[src]
§
payload: string
[src]
§
sender: number
[src]

Process ID of the server process that sent the notifications. Equivalent to pg_backend_pid() SQL function on the sender.