An asynchronous notification received from the database.
| 58 | |
| 59 | |
| 60 | class Notify(NamedTuple): |
| 61 | """An asynchronous notification received from the database.""" |
| 62 | |
| 63 | channel: str |
| 64 | """The name of the channel on which the notification was received.""" |
| 65 | |
| 66 | payload: str |
| 67 | """The message attached to the notification.""" |
| 68 | |
| 69 | pid: int |
| 70 | """The PID of the backend process which sent the notification.""" |
| 71 | |
| 72 | |
| 73 | Notify.__module__ = "psycopg" |
no outgoing calls
no test coverage detected