4 UNLISTEN — stop listening for a notification
8 UNLISTEN { channel | * }
12 UNLISTEN is used to remove an existing registration for NOTIFY events.
13 UNLISTEN cancels any existing registration of the current PostgreSQL
14 session as a listener on the notification channel named channel. The
15 special wildcard * cancels all listener registrations for the current
18 NOTIFY contains a more extensive discussion of the use of LISTEN and
24 Name of a notification channel (any identifier).
27 All current listen registrations for this session are cleared.
31 You can unlisten something you were not listening for; no warning or
34 At the end of each session, UNLISTEN * is automatically executed.
36 A transaction that has executed UNLISTEN cannot be prepared for
41 To make a registration:
44 Asynchronous notification "virtual" received from server process with PID 8448.
46 Once UNLISTEN has been executed, further NOTIFY messages will be
50 -- no NOTIFY event is received
54 There is no UNLISTEN command in the SQL standard.