JSONRPCNotification
data class JSONRPCNotification<out P>(val method: String, val params: P? = null) : JSONRPCMessage<P> (source)
A JSON-RPC 2.0 notification — a request without an id field.
The server MUST NOT reply to a notification.
Type Parameters
P
The type of the params field.