corda / net.corda.core.messaging / FlowHandleWithClientIdImpl

FlowHandleWithClientIdImpl

data class FlowHandleWithClientIdImpl<A> : FlowHandleWithClientId<A>

Constructors

<init>

FlowHandleWithClientIdImpl(id: StateMachineRunId, returnValue: CordaFuture<A>, clientId: String)

Properties

clientId

The clientId with which the client has started the flow.

val clientId: String

id

The started state machine's ID.

val id: StateMachineRunId

returnValue

A CordaFuture of the flow's return value.

val returnValue: CordaFuture<A>

Functions

close

Use this function for flows whose returnValue is not going to be used, so as to free up server resources.

fun close(): Unit