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