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
        }
    }
}

See also

Properties

Link copied to clipboard
val name: String

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
operator override fun equals(other: Any?): Boolean
Link copied to clipboard
override fun hashCode(): Int
Link copied to clipboard
Link copied to clipboard
override fun toString(): String