Post<C extends Cell, N extends Tag> class
A specialized Signal that represents a notification event between cells in a reactive system.
The Post
class carries a map of events (tagged by N
) and their associated data payloads
as they propagate through the cell network. Each post maintains a reference to its origin cell.
This is the primary mechanism for propagating change notifications and events between connected cells in the system.
Type parameters:
@param from: Source cell that posted @param body: Content of the post
Example:
// Example:
final event = Post<Cell, Symbol>(
from: sourceCell,
body: {#update: [1, 2, 3]}
);
- Inheritance
- Implementers
Constructors
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited