Observable.ToAsync<T1, T2, T3, T4, T5, T6, T7> Method (Action<T1, T2, T3, T4, T5, T6, T7>, IScheduler)

Converts the function into an asynchronous function.

Namespace:  System.Reactive.Linq
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ToAsync(Of T1, T2, T3, T4, T5, T6, T7) ( _
    action As Action(Of T1, T2, T3, T4, T5, T6, T7), _
    scheduler As IScheduler _
) As Func(Of T1, T2, T3, T4, T5, T6, T7, IObservable(Of Unit))
'Usage
Dim action As Action(Of T1, T2, T3, T4, T5, T6, T7)
Dim scheduler As IScheduler
Dim returnValue As Func(Of T1, T2, T3, T4, T5, T6, T7, IObservable(Of Unit))

returnValue = action.ToAsync(scheduler)
public static Func<T1, T2, T3, T4, T5, T6, T7, IObservable<Unit>> ToAsync<T1, T2, T3, T4, T5, T6, T7>(
    this Action<T1, T2, T3, T4, T5, T6, T7> action,
    IScheduler scheduler
)
[ExtensionAttribute]
public:
generic<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
static Func<T1, T2, T3, T4, T5, T6, T7, IObservable<Unit>^>^ ToAsync(
    Action<T1, T2, T3, T4, T5, T6, T7>^ action, 
    IScheduler^ scheduler
)
static member ToAsync : 
        action:Action<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7> * 
        scheduler:IScheduler -> Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, IObservable<Unit>> 
JScript does not support generic types and methods.

Type Parameters

  • T1
    The first type of function.
  • T2
    The second type of function.
  • T3
    The third type of function.
  • T4
    The fourth type of function.
  • T5
    The fifth type of function.
  • T6
    The sixth type of function.
  • T7
    The seventh type of function.

Parameters

  • action
    Type: System.Action<T1, T2, T3, T4, T5, T6, T7>
    The action used to synchronization.

Return Value

Type: System.Func<T1, T2, T3, T4, T5, T6, T7, IObservable<Unit>>
The function into an asynchronous function.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Action<T1, T2, T3, T4, T5, T6, T7>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also

Reference

Observable Class

ToAsync Overload

System.Reactive.Linq Namespace