Package-level declarations
Types
Link copied to clipboard
A decorator applying additional logic to a Container.
Link copied to clipboard
Apply this interface to anything you want to become an orbit container host. Typically this will be an Android ViewModel but it can be applied to simple presenters etc.
Link copied to clipboard
data class RealSettings(val sideEffectBufferSize: Int = Channel.BUFFERED, val idlingRegistry: IdlingResource = NoopIdlingResource(), val eventLoopDispatcher: CoroutineDispatcher = Dispatchers.Default, val intentLaunchingDispatcher: CoroutineDispatcher = Dispatchers.Unconfined, val exceptionHandler: CoroutineExceptionHandler? = null, val repeatOnSubscribedStopTimeout: Long = 100)
Link copied to clipboard
class SettingsBuilder
Functions
Link copied to clipboard
fun <STATE : Any, SIDE_EFFECT : Any> CoroutineScope.container(initialState: STATE, buildSettings: SettingsBuilder.() -> Unit = {}, onCreate: suspend SimpleSyntax<STATE, SIDE_EFFECT>.() -> Unit? = null): Container<STATE, SIDE_EFFECT>
Helps create a concrete container in a standard way.
Link copied to clipboard