mirror of
https://github.com/corda/corda.git
synced 2025-06-11 20:01:46 +00:00
This reverts commit d983b7dd70
.
This commit is contained in:
@ -89,12 +89,7 @@ class ReconnectingCordaRPCOps private constructor(
|
|||||||
*
|
*
|
||||||
* Note that this method does not guarantee 100% that the flow will not be started twice.
|
* Note that this method does not guarantee 100% that the flow will not be started twice.
|
||||||
*/
|
*/
|
||||||
fun runFlowWithLogicalRetry(
|
fun runFlowWithLogicalRetry(runFlow: (CordaRPCOps) -> StateMachineRunId, hasFlowStarted: (CordaRPCOps) -> Boolean, onFlowConfirmed: () -> Unit = {}, timeout: Duration = 4.seconds) {
|
||||||
runFlow: (CordaRPCOps) -> StateMachineRunId,
|
|
||||||
hasFlowStarted: (CordaRPCOps) -> Boolean,
|
|
||||||
onFlowConfirmed: () -> Unit = {},
|
|
||||||
timeout: Duration = 4.seconds
|
|
||||||
) {
|
|
||||||
try {
|
try {
|
||||||
runFlow(this)
|
runFlow(this)
|
||||||
onFlowConfirmed()
|
onFlowConfirmed()
|
||||||
@ -254,8 +249,9 @@ class ReconnectingCordaRPCOps private constructor(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private tailrec fun doInvoke(method: Method, args: Array<out Any>?): Any? {
|
private fun doInvoke(method: Method, args: Array<out Any>?): Any? {
|
||||||
// will stop recursing when [method.invoke] succeeds
|
// will stop looping when [method.invoke] succeeds
|
||||||
|
while (true) {
|
||||||
try {
|
try {
|
||||||
log.debug { "Invoking RPC $method..." }
|
log.debug { "Invoking RPC $method..." }
|
||||||
return method.invoke(reconnectingRPCConnection.proxy, *(args ?: emptyArray())).also {
|
return method.invoke(reconnectingRPCConnection.proxy, *(args ?: emptyArray())).also {
|
||||||
@ -268,10 +264,8 @@ class ReconnectingCordaRPCOps private constructor(
|
|||||||
reconnectingRPCConnection.reconnectOnError(e)
|
reconnectingRPCConnection.reconnectOnError(e)
|
||||||
}
|
}
|
||||||
is ConnectionFailureException -> {
|
is ConnectionFailureException -> {
|
||||||
if (!reconnectingRPCConnection.proxy.isWaitingForShutdown()) {
|
|
||||||
log.error("Failed to perform operation ${method.name}. Connection dropped. Retrying....", e)
|
log.error("Failed to perform operation ${method.name}. Connection dropped. Retrying....", e)
|
||||||
reconnectingRPCConnection.reconnectOnError(e)
|
reconnectingRPCConnection.reconnectOnError(e)
|
||||||
}
|
|
||||||
checkIfIsStartFlow(method, e)
|
checkIfIsStartFlow(method, e)
|
||||||
}
|
}
|
||||||
is RPCException -> {
|
is RPCException -> {
|
||||||
@ -287,7 +281,7 @@ class ReconnectingCordaRPCOps private constructor(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return doInvoke(method, args)
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun invoke(proxy: Any, method: Method, args: Array<out Any>?): Any? {
|
override fun invoke(proxy: Any, method: Method, args: Array<out Any>?): Any? {
|
||||||
|
Reference in New Issue
Block a user