Interface: Publisher<T>
"urx/actions".Publisher
A Publisher is the input end of a Stream. The publish action publishes values in publishers.
Type parameters
Name | Description |
---|---|
T | the type of values to be published. |
Hierarchy
Publisher
↳ Stream
Callable
▸ (action
: PUBLISH, value
: T): void
Defined in urx/actions.ts:12
A Publisher is the input end of a Stream. The publish action publishes values in publishers.
internal
Parameters:
Name | Type |
---|---|
action | PUBLISH |
value | T |
Returns: void