JSONRPCNotification
data class JSONRPCNotification(val method: String, val params: JsonElement? = null) : JSONRPCMessage(source)
A notification which does not expect a response.
Notifications are fire-and-forget messages. They do not have an id and the recipient does not send any response (neither success nor error).
Examples: progress updates, resource change notifications, log messages.