Package-level declarations

Types

Link copied to clipboard

A lossless one-shot effect primitive — the recommended backing for GezginMvi.effects.

Link copied to clipboard
interface GezginMvi<out S, in I, out E>

The MVI add-on contract — opt-in. It does NOT enter Gezgin's state-holder world (it imposes no store/reducer); it is just the minimal surface codegen reads: a state stream, an optional effect stream, an intent entry point.

Functions

Link copied to clipboard
fun <E> ObserveEffects(effects: ERROR CLASS: Symbol not found for Flow<E>, onEffect: (E) -> Unit)

Standard helper that collects an effect flow SAFELY, only while STARTED. A route-explicit effect handler calls it: ObserveEffects(vm.effects) { effect -> ... }.