C# 클래스 PortableRx.Reactive.Disposables.ScheduledDisposable

Represents a disposable resource whose disposal invocation will be scheduled on the specified T:Catch.Reactive.Concurrency.IScheduler.
상속: ICancelable
파일 보기 프로젝트 열기: robfe/PortableRx

공개 메소드들

메소드 설명
Dispose ( ) : void

Disposes the wrapped disposable on the provided scheduler.

ScheduledDisposable ( IScheduler scheduler, IDisposable disposable ) : System

Initializes a new instance of the T:Catch.Reactive.Disposables.ScheduledDisposable class that uses an T:Catch.Reactive.Concurrency.IScheduler on which to dispose the disposable.

비공개 메소드들

메소드 설명
DisposeInner ( ) : void

메소드 상세

Dispose() 공개 메소드

Disposes the wrapped disposable on the provided scheduler.
public Dispose ( ) : void
리턴 void

ScheduledDisposable() 공개 메소드

Initializes a new instance of the T:Catch.Reactive.Disposables.ScheduledDisposable class that uses an T:Catch.Reactive.Concurrency.IScheduler on which to dispose the disposable.
or is null.
public ScheduledDisposable ( IScheduler scheduler, IDisposable disposable ) : System
scheduler IScheduler Scheduler where the disposable resource will be disposed on.
disposable IDisposable Disposable resource to dispose on the given scheduler.
리턴 System