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¶
| Name | Summary |
|---|---|
| .ctor | Initializes a new instance of the [ScheduledDisposable](# class that uses an [IScheduler](# on which to... |
Properties¶
| Name | Summary |
|---|---|
| Scheduler | Gets the scheduler where the disposable resource will be disposed on. |
| Disposable | Gets the underlying disposable. After disposal, the result is undefined. |
| IsDisposed | Gets a value that indicates whether the object is disposed. |
Methods¶
| Name | Summary |
|---|---|
| Dispose | Disposes the wrapped disposable on the provided scheduler. |