Skip to content

ReactiveUI.Primitives.Async.Signals namespace

Part of the ReactiveUI.Primitives.Async.Core package.

TypeKindSummary
BehaviorSignalCreationOptionsrecordRepresents configuration options for creating a behavior Signal, including publishing behavior and statefulness.
ConcurrentclassProvides helper methods for forwarding asynchronous observer notifications concurrently to multiple observers.
ConcurrentReplayLatestSignalAsyncclassRepresents an asynchronous Signal that replays only the latest value to new observers and supports concurrent notification of observers.
ConcurrentSignalAsyncclassProvides an asynchronous Signal that forwards notifications to observers concurrently.
ConcurrentStatelessReplayLatestSignalAsyncclassRepresents an asynchronous Signal that replays the latest value to new observers and forwards notifications to all observers concurrently without maintaining internal state.
ConcurrentStatelessSignalAsyncclassRepresents a stateless asynchronous Signal that forwards notifications to observers concurrently.
ISignalAsyncinterfaceRepresents an asynchronous Signal that allows observers to receive values, errors, or completion notifications asynchronously.
PublishingOptionenumSpecifies the available options for publishing operations, indicating whether actions are performed serially or concurrently.
ReplayLatestSignalCreationOptionsrecordRepresents configuration options for creating a replay-latest Signal, controlling publishing behavior and state retention.
SerialReplayLatestSignalAsyncclassRepresents an asynchronous Signal that replays only the latest value to new subscribers and ensures that notifications are delivered to observers in a serial, thread-safe manner.
SerialSignalAsyncclassRepresents an asynchronous Signal that notifies observers in a serial manner, ensuring each observer is notified one at a time.
SerialStatelessReplayLatestSignalAsyncclassRepresents a serial, stateless asynchronous Signal that replays only the last value to new observers and supports asynchronous notification delivery.
SerialStatelessSignalAsyncclassRepresents a stateless asynchronous Signal that notifies observers of events in a serial, sequential manner.
SignalclassProvides factory methods for creating asynchronous Signal instances with configurable publishing and state retention behaviors.
SignalCreationOptionsrecordRepresents the set of options used when creating a Signal, including publishing behavior and state management requirements.