The recording of the first ever ReactiveUI virtual conference is available on our YouTube Channel.

EventLoopScheduler Constructor

EventLoopScheduler Constructor

Include Protected Members
Include Inherited Members

Initializes a new instance of the EventLoopScheduler class.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

NameDescriptionPublic methodEventLoopScheduler()Creates an object that schedules units of work on a designated thread.Public methodEventLoopScheduler(Func<ThreadStart, Thread>)Creates an object that schedules units of work on a designated thread.Top

See Also

Reference

EventLoopScheduler Class

System.Reactive.Concurrency Namespace

EventLoopScheduler Methods

Include Protected Members
Include Inherited Members

The EventLoopScheduler type exposes the following members.

Methods

NameDescriptionPublic methodDisposeEnds the thread associated with this scheduler.Public methodEquals(Inherited from Object.)Protected methodFinalize(Inherited from Object.)Public methodGetHashCode(Inherited from Object.)Public methodGetType(Inherited from Object.)Protected methodMemberwiseClone(Inherited from Object.)Public methodSchedule(TState, Func<IScheduler, TState, IDisposable>)Schedules an action to be executed.Public methodSchedule(TState, DateTimeOffset, Func<IScheduler, TState, IDisposable>)Schedules an action to be executed at dueTime.Public methodSchedule(TState, TimeSpan, Func<IScheduler, TState, IDisposable>)Schedules an action to be executed after dueTime.Public methodToString(Inherited from Object.)Top

Extension Methods

NameDescriptionPublic Extension MethodSchedule(Action)Overloaded. Schedules an action to be executed. (Defined by Scheduler.)Public Extension MethodSchedule(Action)Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.)Public Extension MethodSchedule(TimeSpan, Action)Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(DateTimeOffset, Action)Overloaded. Schedules an action to be executed at dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TimeSpan, Action<Action>)Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(DateTimeOffset, Action<Action>)Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TState, Action<TState, Action>)Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.)Public Extension MethodSchedule(TState, TimeSpan, Action<TState, Action<TState, TimeSpan>>)Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TState, DateTimeOffset, Action<TState, Action<TState, DateTimeOffset>>)Overloaded. Schedules an action to be executed recursively at each dueTime. (Defined by Scheduler.)Top

See Also

Reference

EventLoopScheduler Class

System.Reactive.Concurrency Namespace

EventLoopScheduler Properties

Include Protected Members
Include Inherited Members

The EventLoopScheduler type exposes the following members.

Properties

NameDescriptionPublic propertyNowGets the scheduler's notion of current time.Top

See Also

Reference

EventLoopScheduler Class

System.Reactive.Concurrency Namespace

EventLoopScheduler Class

Represents an object that schedules units of work on a designated thread.

Inheritance Hierarchy

System.Object
  System.Reactive.Concurrency.EventLoopScheduler

Namespace:  System.Reactive.Concurrency
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
Public NotInheritable Class EventLoopScheduler _
    Implements IScheduler, IDisposable
'Usage
Dim instance As EventLoopScheduler
public sealed class EventLoopScheduler : IScheduler, 
    IDisposable
public ref class EventLoopScheduler sealed : IScheduler, 
    IDisposable
[<SealedAttribute>]
type EventLoopScheduler =  
    class
        interface IScheduler
        interface IDisposable
    end
public final class EventLoopScheduler implements IScheduler, IDisposable

The EventLoopScheduler type exposes the following members.

Constructors

NameDescriptionPublic methodEventLoopScheduler()Creates an object that schedules units of work on a designated thread.Public methodEventLoopScheduler(Func<ThreadStart, Thread>)Creates an object that schedules units of work on a designated thread.Top

Properties

NameDescriptionPublic propertyNowGets the scheduler's notion of current time.Top

Methods

NameDescriptionPublic methodDisposeEnds the thread associated with this scheduler.Public methodEquals(Inherited from Object.)Protected methodFinalize(Inherited from Object.)Public methodGetHashCode(Inherited from Object.)Public methodGetType(Inherited from Object.)Protected methodMemberwiseClone(Inherited from Object.)Public methodSchedule(TState, Func<IScheduler, TState, IDisposable>)Schedules an action to be executed.Public methodSchedule(TState, DateTimeOffset, Func<IScheduler, TState, IDisposable>)Schedules an action to be executed at dueTime.Public methodSchedule(TState, TimeSpan, Func<IScheduler, TState, IDisposable>)Schedules an action to be executed after dueTime.Public methodToString(Inherited from Object.)Top

Extension Methods

NameDescriptionPublic Extension MethodSchedule(Action)Overloaded. Schedules an action to be executed. (Defined by Scheduler.)Public Extension MethodSchedule(Action)Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.)Public Extension MethodSchedule(TimeSpan, Action)Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(DateTimeOffset, Action)Overloaded. Schedules an action to be executed at dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TimeSpan, Action<Action>)Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(DateTimeOffset, Action<Action>)Overloaded. Schedules an action to be executed after dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TState, Action<TState, Action>)Overloaded. Schedules an action to be executed recursively. (Defined by Scheduler.)Public Extension MethodSchedule(TState, TimeSpan, Action<TState, Action<TState, TimeSpan>>)Overloaded. Schedules an action to be executed recursively after each dueTime. (Defined by Scheduler.)Public Extension MethodSchedule(TState, DateTimeOffset, Action<TState, Action<TState, DateTimeOffset>>)Overloaded. Schedules an action to be executed recursively at each dueTime. (Defined by Scheduler.)Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Reactive.Concurrency Namespace

EventLoopScheduler Constructor

Creates an object that schedules units of work on a designated thread.

Namespace:  System.Reactive.Concurrency
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
Public Sub New
'Usage

Dim instance As New EventLoopScheduler()
public EventLoopScheduler()
public:
EventLoopScheduler()
new : unit -> EventLoopScheduler
public function EventLoopScheduler()

See Also

Reference

EventLoopScheduler Class

EventLoopScheduler Overload

System.Reactive.Concurrency Namespace

EventLoopScheduler Constructor (Func<ThreadStart, Thread>)

Creates an object that schedules units of work on a designated thread.

Namespace:  System.Reactive.Concurrency
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
Public Sub New ( _
    threadFactory As Func(Of ThreadStart, Thread) _
)
'Usage
Dim threadFactory As Func(Of ThreadStart, Thread)

Dim instance As New EventLoopScheduler(threadFactory)
public EventLoopScheduler(
    Func<ThreadStart, Thread> threadFactory
)
public:
EventLoopScheduler(
    Func<ThreadStart^, Thread^>^ threadFactory
)
new : 
        threadFactory:Func<ThreadStart, Thread> -> EventLoopScheduler
public function EventLoopScheduler(
    threadFactory : Func<ThreadStart, Thread>
)

Parameters

See Also

Reference

EventLoopScheduler Class

EventLoopScheduler Overload

System.Reactive.Concurrency Namespace