)>
Defined in Type: EventLoopScheduler
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive.dll
Applies to
netstandard2.0
Overloads
- 1.
public EventLoopScheduler() - 2.
public EventLoopScheduler(Func<ThreadStart, Thread> threadFactory)
1. Overload
public EventLoopScheduler()
Summary: Creates an object that schedules units of work on a designated thread.
2. Overload
public EventLoopScheduler(Func<ThreadStart, Thread> threadFactory)
Summary: Creates an object that schedules units of work on a designated thread, using the specified factory to control thread creation options.
Parameters
| Name | Type | Description |
|---|---|---|
threadFactory | Func | Factory function for thread creation. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | threadFactory is null. |