Qbservable.Timer Method (IQbservableProvider, DateTimeOffset, TimeSpan, IScheduler)
Returns a queryable observable sequence that produces a value at due time and then after each period.
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, _
period As TimeSpan, _
scheduler As IScheduler _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim dueTime As DateTimeOffset
Dim period As TimeSpan
Dim scheduler As IScheduler
Dim returnValue As IQbservable(Of Long)
returnValue = provider.Timer(dueTime, _
period, scheduler)
public static IQbservable<long> Timer(
this IQbservableProvider provider,
DateTimeOffset dueTime,
TimeSpan period,
IScheduler scheduler
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Timer(
IQbservableProvider^ provider,
DateTimeOffset dueTime,
TimeSpan period,
IScheduler^ scheduler
)
static member Timer :
provider:IQbservableProvider *
dueTime:DateTimeOffset *
period:TimeSpan *
scheduler:IScheduler -> IQbservable<int64>
public static function Timer(
provider : IQbservableProvider,
dueTime : DateTimeOffset,
period : TimeSpan,
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 first value.period
Type: System.TimeSpan
The period to produce subsequent values.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 and then after each period.
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
System.Reactive.Linq Namespace
Qbservable.Timer Method (IQbservableProvider, DateTimeOffset, TimeSpan)
Returns a queryable observable sequence that produces a value at due time and then after each period.
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, _
period As TimeSpan _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim dueTime As DateTimeOffset
Dim period As TimeSpan
Dim returnValue As IQbservable(Of Long)
returnValue = provider.Timer(dueTime, _
period)
public static IQbservable<long> Timer(
this IQbservableProvider provider,
DateTimeOffset dueTime,
TimeSpan period
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Timer(
IQbservableProvider^ provider,
DateTimeOffset dueTime,
TimeSpan period
)
static member Timer :
provider:IQbservableProvider *
dueTime:DateTimeOffset *
period:TimeSpan -> IQbservable<int64>
public static function Timer(
provider : IQbservableProvider,
dueTime : DateTimeOffset,
period : TimeSpan
) : 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 first value.period
Type: System.TimeSpan
The period to produce subsequent values.
Return Value
Type: System.Reactive.Linq.IQbservable<Int64>
A queryable observable sequence that produces a value at due time and then after each period.
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
System.Reactive.Linq Namespace
Qbservable.Timer Method (IQbservableProvider, TimeSpan, TimeSpan)
Returns a queryable observable sequence that produces a value after due time has elapsed and then after each period.
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, _
period As TimeSpan _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim dueTime As TimeSpan
Dim period As TimeSpan
Dim returnValue As IQbservable(Of Long)
returnValue = provider.Timer(dueTime, _
period)
public static IQbservable<long> Timer(
this IQbservableProvider provider,
TimeSpan dueTime,
TimeSpan period
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Timer(
IQbservableProvider^ provider,
TimeSpan dueTime,
TimeSpan period
)
static member Timer :
provider:IQbservableProvider *
dueTime:TimeSpan *
period:TimeSpan -> IQbservable<int64>
public static function Timer(
provider : IQbservableProvider,
dueTime : TimeSpan,
period : TimeSpan
) : IQbservable<long>
Parameters
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.dueTime
Type: System.TimeSpan
The relative time at which to produce the first value.period
Type: System.TimeSpan
The period to produce subsequent values.
Return Value
Type: System.Reactive.Linq.IQbservable<Int64>
A queryable observable sequence that produces a value after due time has elapsed and then after each period.
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
System.Reactive.Linq Namespace
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 .
See Also
Reference
System.Reactive.Linq Namespace
Qbservable.Timer Method (IQbservableProvider, TimeSpan, TimeSpan, IScheduler)
Returns a queryable observable sequence that produces a value after due time has elapsed and then each period.
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, _
period As TimeSpan, _
scheduler As IScheduler _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim dueTime As TimeSpan
Dim period As TimeSpan
Dim scheduler As IScheduler
Dim returnValue As IQbservable(Of Long)
returnValue = provider.Timer(dueTime, _
period, scheduler)
public static IQbservable<long> Timer(
this IQbservableProvider provider,
TimeSpan dueTime,
TimeSpan period,
IScheduler scheduler
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Timer(
IQbservableProvider^ provider,
TimeSpan dueTime,
TimeSpan period,
IScheduler^ scheduler
)
static member Timer :
provider:IQbservableProvider *
dueTime:TimeSpan *
period:TimeSpan *
scheduler:IScheduler -> IQbservable<int64>
public static function Timer(
provider : IQbservableProvider,
dueTime : TimeSpan,
period : TimeSpan,
scheduler : IScheduler
) : IQbservable<long>
Parameters
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.dueTime
Type: System.TimeSpan
The relative time at which to produce the first value.period
Type: System.TimeSpan
The period to produce subsequent values.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 after due time has elapsed and then each period.
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
System.Reactive.Linq Namespace
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
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.dueTime
Type: System.TimeSpan
The relative 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 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
System.Reactive.Linq Namespace
Qbservable.Timer Method (IQbservableProvider, TimeSpan)
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 _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim dueTime As TimeSpan
Dim returnValue As IQbservable(Of Long)
returnValue = provider.Timer(dueTime)
public static IQbservable<long> Timer(
this IQbservableProvider provider,
TimeSpan dueTime
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Timer(
IQbservableProvider^ provider,
TimeSpan dueTime
)
static member Timer :
provider:IQbservableProvider *
dueTime:TimeSpan -> IQbservable<int64>
public static function Timer(
provider : IQbservableProvider,
dueTime : TimeSpan
) : IQbservable<long>
Parameters
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.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
System.Reactive.Linq Namespace
Qbservable.Timer Method (IQbservableProvider, DateTimeOffset)
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 _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim dueTime As DateTimeOffset
Dim returnValue As IQbservable(Of Long)
returnValue = provider.Timer(dueTime)
public static IQbservable<long> Timer(
this IQbservableProvider provider,
DateTimeOffset dueTime
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Timer(
IQbservableProvider^ provider,
DateTimeOffset dueTime
)
static member Timer :
provider:IQbservableProvider *
dueTime:DateTimeOffset -> IQbservable<int64>
public static function Timer(
provider : IQbservableProvider,
dueTime : DateTimeOffset
) : 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.
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 .
See Also
Reference
System.Reactive.Linq Namespace
Qbservable.Timer Method
Include Protected Members
Include Inherited Members
Returns a queryable observable sequence of timer.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
NameDescriptionTimer(IQbservableProvider, DateTimeOffset)Returns a queryable observable sequence that produces a value at due time.
Timer(IQbservableProvider, TimeSpan)Returns a queryable observable sequence that produces a value after the due time has elapsed.
Timer(IQbservableProvider, DateTimeOffset, IScheduler)Returns a queryable observable sequence that produces a value at due time.
Timer(IQbservableProvider, DateTimeOffset, TimeSpan)Returns a queryable observable sequence that produces a value at due time and then after each period.
Timer(IQbservableProvider, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value after the due time has elapsed.
Timer(IQbservableProvider, TimeSpan, TimeSpan)Returns a queryable observable sequence that produces a value after due time has elapsed and then after each period.
Timer(IQbservableProvider, DateTimeOffset, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value at due time and then after each period.
Timer(IQbservableProvider, TimeSpan, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value after due time has elapsed and then each period.Top