디스패처에서 실행할 작업을 예약합니다.
네임스페이스:System.Reactive.Concurrency
어셈블리: System.Reactive.Windows.Threading(System.Reactive.Windows.Threading.dll)
Syntax
'Declaration
Public Function Schedule(Of TState) ( _
state As TState, _
action As Func(Of IScheduler, TState, IDisposable) _
) As IDisposable
'Usage
Dim instance As DispatcherScheduler
Dim state As TState
Dim action As Func(Of IScheduler, TState, IDisposable)
Dim returnValue As IDisposable
returnValue = instance.Schedule(state, _
action)
public IDisposable Schedule<TState>(
TState state,
Func<IScheduler, TState, IDisposable> action
)
public:
generic<typename TState>
virtual IDisposable^ Schedule(
TState state,
Func<IScheduler^, TState, IDisposable^>^ action
) sealed
abstract Schedule :
state:'TState *
action:Func<IScheduler, 'TState, IDisposable> -> IDisposable
override Schedule :
state:'TState *
action:Func<IScheduler, 'TState, IDisposable> -> IDisposable
JScript does not support generic types and methods.
형식 매개 변수
- TState
상태 인수 형식입니다.
매개 변수
- state
형식: TState
실행할 작업에 전달된 상태입니다.
- action
형식: System.Func<IScheduler, TState, IDisposable>
실행할 동작입니다.
반환 값
형식: System.IDisposable
예약된 작업을 취소하는 데 사용되는 삭제 가능한 개체입니다(최상의 작업).
구현
IScheduler.Schedule<TState(TState>, Func<IScheduler, TState, IDisposable>)