Skip to content

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

NameTypeDescription
threadFactoryFuncFactory function for thread creation.

Exceptions

TypeCondition
System.ArgumentNullExceptionthreadFactory is null.