Método Observable.ToAsync<T1, T2> (Action<T1, T2>, IScheduler)
Converte a função em uma função assíncrona.
Namespace:System.Reactive.Linq
Assembly: System.Reactive (em System.Reactive.dll)
Sintaxe
'Declaration
<ExtensionAttribute> _
Public Shared Function ToAsync(Of T1, T2) ( _
action As Action(Of T1, T2), _
scheduler As IScheduler _
) As Func(Of T1, T2, IObservable(Of Unit))
'Usage
Dim action As Action(Of T1, T2)
Dim scheduler As IScheduler
Dim returnValue As Func(Of T1, T2, IObservable(Of Unit))
returnValue = action.ToAsync(scheduler)
public static Func<T1, T2, IObservable<Unit>> ToAsync<T1, T2>(
this Action<T1, T2> action,
IScheduler scheduler
)
[ExtensionAttribute]
public:
generic<typename T1, typename T2>
static Func<T1, T2, IObservable<Unit>^>^ ToAsync(
Action<T1, T2>^ action,
IScheduler^ scheduler
)
static member ToAsync :
action:Action<'T1, 'T2> *
scheduler:IScheduler -> Func<'T1, 'T2, IObservable<Unit>>
JScript does not support generic types and methods.
Parâmetros de tipo
- T1
O primeiro tipo de função.
- T2
O segundo tipo de função.
Parâmetros
- ação
Tipo: System.Action<T1, T2>
A ação usada para sincronização.
- agendador
Tipo: System.Reactive.Concurrency.IScheduler
O agendador usado para sincronização.
Valor Retornado
Tipo: System.Func<T1, T2, IObservable<Unit>>
A função em uma função assíncrona.
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 Action<T1, T2>. 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 .