Sub<'Msg> Type
Represents a subscription that listens for external events and dispatches messages.
Subscriptions are the Elmish way to handle external event sources (input devices, timers, network events). The runtime diffs subscriptions by SubId to determine which to start/stop across frames.
Union cases
| Union case |
Description
|
|
Multiple subscriptions combined
|
Full Usage:
NoSub
|
No subscription (use |
Instance members
| Instance member |
Description
|
Full Usage:
this.IsActive
Returns: bool
|
|
Full Usage:
this.IsBatchSub
Returns: bool
|
|
Full Usage:
this.IsNoSub
Returns: bool
|
|
Mibo