ACTION
The current Action that is being executed by TorRuntime.
Useful for reacting to specific jobs via attachment of an ActionJob.invokeOnCompletion handler.
e.g.
EXECUTE.ACTION.observer { job ->
if (!job.isStop) return@observer
job.invokeOnCompletion {
if (job.isSuccess) {
// do something
}
}
}
Content copied to clipboard
See also
Functions
Link copied to clipboard
protected override fun createProtected(event: RuntimeEvent<ActionJob>, tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<ActionJob>): RuntimeEvent.Observer<ActionJob>
Link copied to clipboard
fun observer(tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<ActionJob>): RuntimeEvent.Observer<ActionJob>