Qbservable::Delay<TSource> Method (IQbservable<TSource>, TimeSpan, IScheduler)
Indicates the queryable observable sequence by due time with the specified source, dueTime and scheduler.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
[ExtensionAttribute] public: generic<typename TSource> static IQbservable<TSource>^ Delay( IQbservable<TSource>^ source, TimeSpan dueTime, IScheduler^ scheduler )
Type Parameters
- TSource
The type of source.
Parameters
- source
- Type: System.Reactive.Linq::IQbservable<TSource>
The source sequence to delay values for.
- dueTime
- Type: System::TimeSpan
The relative time by which to shift the queryable observable sequence.
- scheduler
- Type: System.Reactive.Concurrency::IScheduler
The scheduler to run the delay timers on.
Return Value
Type: System.Reactive.Linq::IQbservable<TSource>The queryable observable sequence by due time with the specified source, dueTime and scheduler.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103).aspx or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).aspx.
Show: