Qbservable.Timer Method (IQbservableProvider, DateTimeOffset, IScheduler)
Returns a queryable observable sequence that produces a value at due time.
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 DateTimeOffset, _
scheduler As IScheduler _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim dueTime As DateTimeOffset
Dim scheduler As IScheduler
Dim returnValue As IQbservable(Of Long)
returnValue = provider.Timer(dueTime, _
scheduler)
public static IQbservable<long> Timer(
this IQbservableProvider provider,
DateTimeOffset dueTime,
IScheduler scheduler
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Timer(
IQbservableProvider^ provider,
DateTimeOffset dueTime,
IScheduler^ scheduler
)
static member Timer :
provider:IQbservableProvider *
dueTime:DateTimeOffset *
scheduler:IScheduler -> IQbservable<int64>
public static function Timer(
provider : IQbservableProvider,
dueTime : DateTimeOffset,
scheduler : IScheduler
) : IQbservable<long>
Parameters
- provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.
- dueTime
Type: System.DateTimeOffset
The absolute time at which to produce the value.
- scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler to run the timer on.
Return Value
Type: System.Reactive.Linq.IQbservable<Int64>
A queryable observable sequence that produces a value at due time.
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 .