ScheduledDisposable Class

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

Inheritance Hierarchy

System.Object
  System.Reactive.Disposables.ScheduledDisposable

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

Syntax

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

The ScheduledDisposable type exposes the following members.

Constructors

  Name Description
Public method ScheduledDisposable Initializes a new instance of the ScheduledDisposable class that uses a scheduler on which to dispose the disposable.

Top

Properties

  Name Description
Public property Disposable Gets a value that indicates the underlying disposable.
Public property IsDisposed Gets a value that indicates whether the object is disposed.
Public property Scheduler Gets a value that indicates the scheduler.

Top

Methods

  Name Description
Public method Dispose Disposes the wrapped disposable on the provided scheduler.
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

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.Disposables Namespace