Observable.Replay<TSource> Method (IObservable<TSource>, Int32, TimeSpan)
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Replay(Of TSource) ( _
source As IObservable(Of TSource), _
bufferSize As Integer, _
window As TimeSpan _
) As IConnectableObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim bufferSize As Integer
Dim window As TimeSpan
Dim returnValue As IConnectableObservable(Of TSource)
returnValue = source.Replay(bufferSize, _
window)
public static IConnectableObservable<TSource> Replay<TSource>(
this IObservable<TSource> source,
int bufferSize,
TimeSpan window
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IConnectableObservable<TSource>^ Replay(
IObservable<TSource>^ source,
int bufferSize,
TimeSpan window
)
static member Replay :
source:IObservable<'TSource> *
bufferSize:int *
window:TimeSpan -> IConnectableObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
source
Type: System.IObservable<TSource>
The source sequence whose elements will be multicasted through a single shared subscription.bufferSize
Type: System.Int32
The maximum element count of the replay buffer.window
Type: System.TimeSpan
The maximum time length of the replay buffer.
Return Value
Type: System.Reactive.Subjects.IConnectableObservable<TSource>
A connectable observable sequence that shares a single subscription to the underlying sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. 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
Observable.Replay<TSource> Method (IObservable<TSource>, Int32, IScheduler)
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Replay(Of TSource) ( _
source As IObservable(Of TSource), _
bufferSize As Integer, _
scheduler As IScheduler _
) As IConnectableObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim bufferSize As Integer
Dim scheduler As IScheduler
Dim returnValue As IConnectableObservable(Of TSource)
returnValue = source.Replay(bufferSize, _
scheduler)
public static IConnectableObservable<TSource> Replay<TSource>(
this IObservable<TSource> source,
int bufferSize,
IScheduler scheduler
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IConnectableObservable<TSource>^ Replay(
IObservable<TSource>^ source,
int bufferSize,
IScheduler^ scheduler
)
static member Replay :
source:IObservable<'TSource> *
bufferSize:int *
scheduler:IScheduler -> IConnectableObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
source
Type: System.IObservable<TSource>
The source sequence whose elements will be multicasted through a single shared subscription.bufferSize
Type: System.Int32
The maximum element count of the replay buffer.scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler where connected observers will be invoked on.
Return Value
Type: System.Reactive.Subjects.IConnectableObservable<TSource>
A connectable observable sequence that shares a single subscription to the underlying sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. 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
Observable.Replay<TSource> Method (IObservable<TSource>)
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Replay(Of TSource) ( _
source As IObservable(Of TSource) _
) As IConnectableObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim returnValue As IConnectableObservable(Of TSource)
returnValue = source.Replay()
public static IConnectableObservable<TSource> Replay<TSource>(
this IObservable<TSource> source
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IConnectableObservable<TSource>^ Replay(
IObservable<TSource>^ source
)
static member Replay :
source:IObservable<'TSource> -> IConnectableObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.IObservable<TSource>
The source sequence whose elements will be multicasted through a single shared subscription.
Return Value
Type: System.Reactive.Subjects.IConnectableObservable<TSource>
A connectable observable sequence that shares a single subscription to the underlying sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. 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
Observable.Replay<TSource> Method (IObservable<TSource>, TimeSpan)
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Replay(Of TSource) ( _
source As IObservable(Of TSource), _
window As TimeSpan _
) As IConnectableObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim window As TimeSpan
Dim returnValue As IConnectableObservable(Of TSource)
returnValue = source.Replay(window)
public static IConnectableObservable<TSource> Replay<TSource>(
this IObservable<TSource> source,
TimeSpan window
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IConnectableObservable<TSource>^ Replay(
IObservable<TSource>^ source,
TimeSpan window
)
static member Replay :
source:IObservable<'TSource> *
window:TimeSpan -> IConnectableObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
source
Type: System.IObservable<TSource>
The source sequence whose elements will be multicasted through a single shared subscription.window
Type: System.TimeSpan
The maximum time length of the replay buffer.
Return Value
Type: System.Reactive.Subjects.IConnectableObservable<TSource>
A connectable observable sequence that shares a single subscription to the underlying sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. 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
Observable.Replay<TSource> Method (IObservable<TSource>, Int32)
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Replay(Of TSource) ( _
source As IObservable(Of TSource), _
bufferSize As Integer _
) As IConnectableObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim bufferSize As Integer
Dim returnValue As IConnectableObservable(Of TSource)
returnValue = source.Replay(bufferSize)
public static IConnectableObservable<TSource> Replay<TSource>(
this IObservable<TSource> source,
int bufferSize
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IConnectableObservable<TSource>^ Replay(
IObservable<TSource>^ source,
int bufferSize
)
static member Replay :
source:IObservable<'TSource> *
bufferSize:int -> IConnectableObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
source
Type: System.IObservable<TSource>
The source sequence whose elements will be multicasted through a single shared subscription.bufferSize
Type: System.Int32
The maximum element count of the replay buffer.
Return Value
Type: System.Reactive.Subjects.IConnectableObservable<TSource>
A connectable observable sequence that shares a single subscription to the underlying sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. 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
Observable.Replay<TSource> Method (IObservable<TSource>, TimeSpan, IScheduler)
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Replay(Of TSource) ( _
source As IObservable(Of TSource), _
window As TimeSpan, _
scheduler As IScheduler _
) As IConnectableObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim window As TimeSpan
Dim scheduler As IScheduler
Dim returnValue As IConnectableObservable(Of TSource)
returnValue = source.Replay(window, _
scheduler)
public static IConnectableObservable<TSource> Replay<TSource>(
this IObservable<TSource> source,
TimeSpan window,
IScheduler scheduler
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IConnectableObservable<TSource>^ Replay(
IObservable<TSource>^ source,
TimeSpan window,
IScheduler^ scheduler
)
static member Replay :
source:IObservable<'TSource> *
window:TimeSpan *
scheduler:IScheduler -> IConnectableObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
source
Type: System.IObservable<TSource>
The source sequence whose elements will be multicasted through a single shared subscription.window
Type: System.TimeSpan
The maximum time length of the replay buffer.scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler where connected observers will be invoked on.
Return Value
Type: System.Reactive.Subjects.IConnectableObservable<TSource>
A connectable observable sequence that shares a single subscription to the underlying sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. 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
Observable.Replay<TSource> Method (IObservable<TSource>, Int32, TimeSpan, IScheduler)
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Replay(Of TSource) ( _
source As IObservable(Of TSource), _
bufferSize As Integer, _
window As TimeSpan, _
scheduler As IScheduler _
) As IConnectableObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim bufferSize As Integer
Dim window As TimeSpan
Dim scheduler As IScheduler
Dim returnValue As IConnectableObservable(Of TSource)
returnValue = source.Replay(bufferSize, _
window, scheduler)
public static IConnectableObservable<TSource> Replay<TSource>(
this IObservable<TSource> source,
int bufferSize,
TimeSpan window,
IScheduler scheduler
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IConnectableObservable<TSource>^ Replay(
IObservable<TSource>^ source,
int bufferSize,
TimeSpan window,
IScheduler^ scheduler
)
static member Replay :
source:IObservable<'TSource> *
bufferSize:int *
window:TimeSpan *
scheduler:IScheduler -> IConnectableObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
source
Type: System.IObservable<TSource>
The source sequence whose elements will be multicasted through a single shared subscription.bufferSize
Type: System.Int32
The maximum element count of the replay buffer.window
Type: System.TimeSpan
The maximum time length of the replay buffer.scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler where connected observers will be invoked on.
Return Value
Type: System.Reactive.Subjects.IConnectableObservable<TSource>
A connectable observable sequence that shares a single subscription to the underlying sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. 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
Observable.Replay<TSource> Method (IObservable<TSource>, IScheduler)
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Replay(Of TSource) ( _
source As IObservable(Of TSource), _
scheduler As IScheduler _
) As IConnectableObservable(Of TSource)
'Usage
Dim source As IObservable(Of TSource)
Dim scheduler As IScheduler
Dim returnValue As IConnectableObservable(Of TSource)
returnValue = source.Replay(scheduler)
public static IConnectableObservable<TSource> Replay<TSource>(
this IObservable<TSource> source,
IScheduler scheduler
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IConnectableObservable<TSource>^ Replay(
IObservable<TSource>^ source,
IScheduler^ scheduler
)
static member Replay :
source:IObservable<'TSource> *
scheduler:IScheduler -> IConnectableObservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
source
Type: System.IObservable<TSource>
The source sequence whose elements will be multicasted through a single shared subscription.scheduler
Type: System.Reactive.Concurrency.IScheduler
The scheduler where connected observers will be invoked on.
Return Value
Type: System.Reactive.Subjects.IConnectableObservable<TSource>
A connectable observable sequence that shares a single subscription to the underlying sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .