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

SynchronizationContextScheduler()s

SynchronizationContextScheduler Methods

Include Protected Members
Include Inherited Members

The SynchronizationContextScheduler type exposes the following members.

Methods

NameDescriptionPublic 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

SynchronizationContextScheduler Class

System.Reactive.Concurrency Namespace

SynchronizationContextScheduler Constructor

Creates an object that schedules units of work on the provided SynchronizationContext.

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

Syntax

'Declaration
Public Sub New ( _
    context As SynchronizationContext _
)
'Usage
Dim context As SynchronizationContext

Dim instance As New SynchronizationContextScheduler(context)
public SynchronizationContextScheduler(
    SynchronizationContext context
)
public:
SynchronizationContextScheduler(
    SynchronizationContext^ context
)
new : 
        context:SynchronizationContext -> SynchronizationContextScheduler
public function SynchronizationContextScheduler(
    context : SynchronizationContext
)

Parameters

See Also

Reference

SynchronizationContextScheduler Class

System.Reactive.Concurrency Namespace

SynchronizationContextScheduler Properties

Include Protected Members
Include Inherited Members

The SynchronizationContextScheduler type exposes the following members.

Properties

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

See Also

Reference

SynchronizationContextScheduler Class

System.Reactive.Concurrency Namespace

SynchronizationContextScheduler Class

Represents an object that schedules units of work on a provided SynchronizationContext.

Inheritance Hierarchy

System.Object
  System.Reactive.Concurrency.SynchronizationContextScheduler

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

Syntax

'Declaration
Public Class SynchronizationContextScheduler _
    Implements IScheduler
'Usage
Dim instance As SynchronizationContextScheduler
public class SynchronizationContextScheduler : IScheduler
public ref class SynchronizationContextScheduler : IScheduler
type SynchronizationContextScheduler =  
    class
        interface IScheduler
    end
public class SynchronizationContextScheduler implements IScheduler

The SynchronizationContextScheduler type exposes the following members.

Constructors

NameDescriptionPublic methodSynchronizationContextSchedulerCreates an object that schedules units of work on the provided SynchronizationContext.Top

Properties

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

Methods

NameDescriptionPublic 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