Skip to content

ScheduledDisposable class

Defined in

Namespace: System.Reactive.Disposables Assembly: System.Reactive.dll Full name: System.Reactive.Disposables.ScheduledDisposable Modifiers: public sealed

Summary

Represents a disposable resource whose disposal invocation will be scheduled on the specified IScheduler.

Applies to

netstandard2.0

Class hierarchy
classDiagram
class ScheduledDisposable
class ICancelable {
    <>
}
ICancelable <|.. ScheduledDisposable
class IDisposable {
    <>
}
IDisposable <|.. ScheduledDisposable

Implements: ICancelable, IDisposable

Constructors

NameSummary
.ctorInitializes a new instance of the [ScheduledDisposable](# class that uses an [IScheduler](# on which to...

Properties

NameSummary
SchedulerGets the scheduler where the disposable resource will be disposed on.
DisposableGets the underlying disposable. After disposal, the result is undefined.
IsDisposedGets a value that indicates whether the object is disposed.

Methods

NameSummary
DisposeDisposes the wrapped disposable on the provided scheduler.
Inherited members