notify
Sends a notification to the remote peer without expecting a response.
Per the JSON-RPC 2.0 specification, the server MUST NOT reply to a notification. Use this for fire-and-forget messages where delivery confirmation is not required.
Like request, concurrent calls are safe: sends are serialized internally, so this function suspends only until the message has been handed off to the underlying transport.
Parameters
method
The name of the remote method to invoke.
params
The invocation parameters. Per the JSON-RPC 2.0 specification this MUST be a kotlinx.serialization.json.JsonObject or a kotlinx.serialization.json.JsonArray.