Observable.ToAsync Method (Action, 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 ( _
action As Action, _
scheduler As IScheduler _
) As Func(Of IObservable(Of Unit))
'Usage
Dim action As Action
Dim scheduler As IScheduler
Dim returnValue As Func(Of IObservable(Of Unit))
returnValue = action.ToAsync(scheduler)
public static Func<IObservable<Unit>> ToAsync(
this Action action,
IScheduler scheduler
)
[ExtensionAttribute]
public:
static Func<IObservable<Unit>^>^ ToAsync(
Action^ action,
IScheduler^ scheduler
)
static member ToAsync :
action:Action *
scheduler:IScheduler -> Func<IObservable<Unit>>
public static function ToAsync(
action : Action,
scheduler : IScheduler
) : Func<IObservable<Unit>>
Parameters
- action
Type: System.Action
The action used to synchronization.
- scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler used to synchronization.
Return Value
Type: System.Func<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. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .