Synchronization class¶
Attributes: [EditorBrowsable(EditorBrowsableState.2)]
Defined in
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive.dll
Full name: System.Reactive.Concurrency.Synchronization
Modifiers: public static
Summary¶
Provides basic synchronization and scheduling services for observable sequences.
Applies to
netstandard2.0
Methods¶
| Name | Summary |
|---|---|
| static SubscribeOn | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. |
| static ObserveOn | Wraps the source sequence in order to run its observer callbacks on the specified scheduler. |
| static Synchronize | Wraps the source sequence in order to ensure observer callbacks are properly serialized. |