POSTGRESQL: NOTIFY
top of page
CerebroSQL

PostgreSQL:  

NOTIFY

Topic

NOTIFY channel [ , payload ]

Example

LISTEN virtual;
NOTIFY virtual;
Asynchronous notification "virtual" received from server process with PID 8448.
NOTIFY virtual, 'This is the payload';
Asynchronous notification "virtual" with payload "This is the payload" received from server
process with PID 8448.

LISTEN foo;
SELECT pg_notify('fo' || 'o', 'pay' || 'load');
Asynchronous notification "foo" with payload "payload" received from server process with PID
14728.

bottom of page