Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
abstract class Interactor<T : Any>(initialState: T, dependencies: List<IInteractor<*>> = emptyList()) : IInteractor<T>
Interactor An isolated slice of safely mutable, observable state that encapsulates business logic pertaining to state manipulation.
Functions
Link copied to clipboard
fun <S : Any, H : IInteractor<S>> createInteractor(initialState: S, dependencies: List<IInteractor<*>> = emptyList(), computed: (state: S) -> S = { it }, hooks: ((update: (state: S) -> S) -> S, interactor: IInteractor<S>) -> H): H
Create a functional Interactor without having to extend the Interactor class. It is recommended to extend the Interactor class directly, but sometimes that may not be possible. createInteractor provides an alternative means of creating an Interactor.