Qbservable.Interval Method (IQbservableProvider, TimeSpan)
Returns a queryable observable sequence that produces a value after each period.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Interval ( _
provider As IQbservableProvider, _
period As TimeSpan _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim period As TimeSpan
Dim returnValue As IQbservable(Of Long)
returnValue = provider.Interval(period)
public static IQbservable<long> Interval(
this IQbservableProvider provider,
TimeSpan period
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Interval(
IQbservableProvider^ provider,
TimeSpan period
)
static member Interval :
provider:IQbservableProvider *
period:TimeSpan -> IQbservable<int64>
public static function Interval(
provider : IQbservableProvider,
period : TimeSpan
) : IQbservable<long>
Parameters
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.period
Type: System.TimeSpan
The period for producing the values in the resulting sequence.
Return Value
Type: System.Reactive.Linq.IQbservable<Int64>
A queryable observable sequence that produces a value 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.Interval Method (IQbservableProvider, TimeSpan, IScheduler)
Returns a queryable observable sequence that produces a value after each period.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Interval ( _
provider As IQbservableProvider, _
period As TimeSpan, _
scheduler As IScheduler _
) As IQbservable(Of Long)
'Usage
Dim provider As IQbservableProvider
Dim period As TimeSpan
Dim scheduler As IScheduler
Dim returnValue As IQbservable(Of Long)
returnValue = provider.Interval(period, _
scheduler)
public static IQbservable<long> Interval(
this IQbservableProvider provider,
TimeSpan period,
IScheduler scheduler
)
[ExtensionAttribute]
public:
static IQbservable<long long>^ Interval(
IQbservableProvider^ provider,
TimeSpan period,
IScheduler^ scheduler
)
static member Interval :
provider:IQbservableProvider *
period:TimeSpan *
scheduler:IScheduler -> IQbservable<int64>
public static function Interval(
provider : IQbservableProvider,
period : TimeSpan,
scheduler : IScheduler
) : IQbservable<long>
Parameters
provider
Type: System.Reactive.Linq.IQbservableProvider
The local Qbservable provider.period
Type: System.TimeSpan
The period for producing the values in the resulting sequence.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 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.Interval Method
Include Protected Members
Include Inherited Members
Returns an observable sequence that produces a value after each period.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
NameDescriptionInterval(IQbservableProvider, TimeSpan)Returns a queryable observable sequence that produces a value after each period.
Interval(IQbservableProvider, TimeSpan, IScheduler)Returns a queryable observable sequence that produces a value after each period.Top