GracefulReconnect(onDisconnect: Runnable, onReconnect: Runnable, maxAttempts: Int = 5)
GracefulReconnect(onDisconnect: () -> Unit = {}, onReconnect: () -> Unit = {}, maxAttempts: Int = 5)
GracefulReconnect provides the opportunity to perform certain logic when the RPC encounters a connection disconnect during communication with the node.
NOTE: The callbacks provided may be executed on a separate thread to that which called the RPC command.
onDisconnect - implement this callback to perform logic when the RPC disconnects on connection disconnect
onReconnect - implement this callback to perform logic when the RPC has reconnected after connection disconnect
maxAttempts - the maximum number of attempts per each individual RPC call. A negative number indicates infinite
number of retries. The default value is 5.