handleNotice

abstract fun handleNotice(notice: PgNotice)

Called for every notice the server sends on a connection this handler is installed on.

A handler declared as a Kotlin object is shared by every connection using it, so notices from a whole pool arrive through this one method; PgNotice.processId is what tells them apart.

Parameters

notice

The notice received.