ChainedRunnablePart

abstract class ChainedRunnablePart<T, R>(sync: Boolean)

Functions

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
execute
Link copied to clipboard
abstract fun execute()
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

next
Link copied to clipboard
var next: ChainedRunnablePart<R, *>?
sync
Link copied to clipboard
val sync: Boolean

Inheritors

ChainedRunnablePartFirst
Link copied to clipboard
ChainedRunnablePartThen
Link copied to clipboard

Extensions

thenAsync
Link copied to clipboard
fun <T, R, U> ChainedRunnablePart<T, R>.thenAsync(runnable: (R) -> U): ChainedRunnablePartThen<R, U>
thenDo
Link copied to clipboard
fun <T, R, U> ChainedRunnablePart<T, R>.thenDo(sync: Boolean, runnable: (R) -> U): ChainedRunnablePartThen<R, U>
thenSync
Link copied to clipboard
fun <T, R, U> ChainedRunnablePart<T, R>.thenSync(runnable: (R) -> U): ChainedRunnablePartThen<R, U>