Actor
The Actor
is a crucial component of the Store
architecture, responsible for implementing the core logic of the application.
Overview
Actor
is designed to:
- Accept
Intent
- Produce
SideEffect
- Generate new
State
It must be part of the Store
and is managed by it.
Interface Definition
public interface Actor<Intent : Any, State : Any, out SideEffect : Any> {
/**
* Initializes the Actor
* Called by the Store
*/
@MainThread
public fun init(
scope: CoroutineScope,
getState: () -> State,
reduce: (State.() -> State) -> Unit,
onNewIntent: (Intent) -> Unit,
postSideEffect: (sideEffect: SideEffect) -> Unit,
)
/**
* Called when the Store receives a new Intent
* Called by the Store
*/
@MainThread
public fun onIntent(intent: Intent)
/**
* Destroys the Actor
* Called by the Store
*/
@MainThread
public fun destroy()
}
Key Methods
init
@MainThread
public fun init(
scope: CoroutineScope,
getState: () -> State,
reduce: (State.() -> State) -> Unit,
onNewIntent: (Intent) -> Unit,
postSideEffect: (sideEffect: SideEffect) -> Unit,
)
This function initializes the Actor
. It is called by the Store
and provides the Actor
with necessary dependencies:
scope
: ACoroutineScope
for managing coroutinesgetState
: A function to retrieve the current statereduce
: A function to update the stateonNewIntent
: A function to handle new intentspostSideEffect
: A function to emit side effects
onIntent
This function is called when the Store
receives a new Intent
. It's where the Actor
processes incoming intents and updates the state or produces side effects accordingly.
destroy
This function is called to destroy the Actor
. It should be used to clean up any resources or cancel any ongoing operations.
Important Notes
- All methods in the
Actor
interface are annotated with@MainThread
, indicating that they should only be called on the main thread. - The
Actor
is tightly coupled with theStore
and should not be used independently. - Implementations of
Actor
should handle all business logic, state updates, and side effect production based on received intents.
For more information on how Actor
interacts with other components, refer to the Store
documentation.