Qbservable.Timeout<TSource> Method (IQbservable<TSource>, TimeSpan, IObservable<TSource>)

Returns the source queryable observable sequence or the other queryable observable sequence if dueTime elapses.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Timeout(Of TSource) ( _
    source As IQbservable(Of TSource), _
    dueTime As TimeSpan, _
    other As IObservable(Of TSource) _
) As IQbservable(Of TSource)
'Usage
Dim source As IQbservable(Of TSource)
Dim dueTime As TimeSpan
Dim other As IObservable(Of TSource)
Dim returnValue As IQbservable(Of TSource)

returnValue = source.Timeout(dueTime, _
    other)
public static IQbservable<TSource> Timeout<TSource>(
    this IQbservable<TSource> source,
    TimeSpan dueTime,
    IObservable<TSource> other
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQbservable<TSource>^ Timeout(
    IQbservable<TSource>^ source, 
    TimeSpan dueTime, 
    IObservable<TSource>^ other
)
static member Timeout : 
        source:IQbservable<'TSource> * 
        dueTime:TimeSpan * 
        other:IObservable<'TSource> -> IQbservable<'TSource> 
JScript does not support generic types and methods.

Type Parameters

  • TSource
    The type source.

Parameters

Return Value

Type: System.Reactive.Linq.IQbservable<TSource>
The source sequence switching to the other sequence in case of a timeout.

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 or .

See Also

Reference

Qbservable Class

Timeout Overload

System.Reactive.Linq Namespace