corda / net.corda.core.flows / FlowExternalOperation

FlowExternalOperation

interface FlowExternalOperation<R : Any>

FlowExternalOperation represents an external process that blocks a flow from continuing until the result of execute has been retrieved. Examples of external processes where FlowExternalOperation would be useful include, triggering a long running process on an external system or retrieving information from a service that might be down.

The flow will suspend while it is blocked to free up a flow worker thread, which allows other flows to continue processing while waiting for the result of this process.

Implementations of FlowExternalOperation should ideally hold references to any external values required by execute. These references should be passed into the implementation's constructor. For example, an amount or a reference to a Corda Service could be passed in.

It is discouraged to insert into the node's database from a FlowExternalOperation, except for keeping track of deduplicationIds that have been processed. It is possible to interact with the database from inside a FlowExternalOperation but, for most operations, is not currently supported.

Functions

execute

Executes a blocking operation.

abstract fun execute(deduplicationId: String): R