Método Extensions.Schedule
Namespace:ReactiveTests
Assembly: Tests.System.Reactive (em Tests.System.Reactive.dll)
Sintaxe
'Declaration
<ExtensionAttribute> _
Public Shared Function Schedule ( _
scheduler As TestScheduler, _
action As Action, _
time As Long _
) As IDisposable
'Usage
Dim scheduler As TestScheduler
Dim action As Action
Dim time As Long
Dim returnValue As IDisposable
returnValue = scheduler.Schedule(action, _
time)
public static IDisposable Schedule(
this TestScheduler scheduler,
Action action,
long time
)
[ExtensionAttribute]
public:
static IDisposable^ Schedule(
TestScheduler^ scheduler,
Action^ action,
long long time
)
static member Schedule :
scheduler:TestScheduler *
action:Action *
time:int64 -> IDisposable
public static function Schedule(
scheduler : TestScheduler,
action : Action,
time : long
) : IDisposable
Parâmetros
- agendador
Tipo: Microsoft.Reactive.Testing.TestScheduler
- ação
Tipo: System.Action
- time
Tipo: System.Int64
Valor Retornado
Tipo: System.IDisposable
Observação de uso
No Visual Basic e no C#, você pode chamar esse método como um método de instância em qualquer objeto do tipo TestScheduler. Quando você usar a sintaxe de método de instância para chamar esse método, omita o primeiro parâmetro. Para obter mais informações, consulte ou .