Skip to main content

MsgSender

Type Alias MsgSender 

Source
pub type MsgSender = Sender<Msg>;
Expand description

Single channel back to the reducer. EffectRunner holds the sender; every spawned task clones this so it can emit Msg as work progresses. Bounded capacity applies natural backpressure — if the main loop can’t keep up, the provider’s streaming send .awaits and the whole pipeline throttles.

Aliased Type§

pub struct MsgSender { /* private fields */ }