Package-level declarations

Types

Link copied to clipboard
interface Destroyable
Link copied to clipboard
fun interface Disposable

A callback to return to callers to "undo", or "dispose" of something.

Link copied to clipboard
abstract class EnqueuedJob(val name: String, onFailure: OnFailure, handler: UncaughtException.Handler)

Base abstraction for single-use model that tracks the state of a queue-able job. Once completed, either successfully or by cancellation/error, the EnqueuedJob is dead and should be discarded.

Link copied to clipboard
abstract class Event<Data, E : Event<Data, E, O>, O : Event.Observer<Data, E>>(val name: String)

Base abstraction for creating enum like event/observer type hierarchies using kotlin sealed classes & data objects.

Link copied to clipboard
fun interface Executable

A callback for executing something

Link copied to clipboard
fun interface ItBlock<in It>

Helper for non-Kotlin consumers instead of using

Link copied to clipboard
fun interface OnEvent<in Data> : ItBlock<Data>

A callback for dispatching event data.

Link copied to clipboard
fun interface OnFailure : ItBlock<Throwable>

An alias of ItBlock indicating a callback for something occurring exceptionally.

Link copied to clipboard
fun interface OnSuccess<in T> : ItBlock<T>

An alias of ItBlock indicating a callback for something occurring successfully.

Link copied to clipboard
fun interface ThisBlock<in This : Any>

Helper for non-Kotlin consumers instead of using

Link copied to clipboard
Link copied to clipboard
class UncaughtException : RuntimeException

A special exception to indicate something went terribly wrong somewhere.

Functions

Link copied to clipboard
inline fun <It> It.apply(block: ItBlock<It>): It
inline fun <This : Any> This.apply(block: ThisBlock<This>): This