corda / net.corda.core.node / AppServiceHub / startTrackedFlow

startTrackedFlow

abstract fun <T> startTrackedFlow(flow: FlowLogic<T>): FlowProgressHandle<T>

Start the given flow with the given arguments, returning an Observable with a single observation of the result of running the flow. flow must be annotated with net.corda.core.flows.StartableByService. TODO it is assumed here that the flow object has an appropriate classloader.