Share via


Qbservable.Timer Method (IQbservableProvider, TimeSpan, IScheduler)

Returns a queryable observable sequence that produces a value after the due time has elapsed.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Timer ( _
    provider As IQbservableProvider, _
    dueTime As TimeSpan, _
    scheduler As IScheduler _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim dueTime As TimeSpan
Dim scheduler As IScheduler
Dim returnValue As IQbservable(Of Long)

returnValue = provider.Timer(dueTime, _
    scheduler)
public static IQbservable<long> Timer(
    this IQbservableProvider provider,
    TimeSpan dueTime,
    IScheduler scheduler
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Timer(
    IQbservableProvider^ provider, 
    TimeSpan dueTime, 
    IScheduler^ scheduler
)
static member Timer : 
        provider:IQbservableProvider * 
        dueTime:TimeSpan * 
        scheduler:IScheduler -> IQbservable<int64> 
public static function Timer(
    provider : IQbservableProvider, 
    dueTime : TimeSpan, 
    scheduler : IScheduler
) : IQbservable<long>

Parameters

  • dueTime
    Type: System.TimeSpan
    The relative time at which to produce the value.

Return Value

Type: System.Reactive.Linq.IQbservable<Int64>
A queryable observable sequence that produces a value after the due time has elapsed.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservableProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also

Reference

Qbservable Class

Timer Overload

System.Reactive.Linq Namespace