Observable.Replay Method
Include Protected Members
Include Inherited Members
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
![]() ![]() |
Replay<TSource>(IObservable<TSource>) | Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. |
![]() ![]() |
Replay<TSource, TResult>(IObservable<TSource>, Func<IObservable<TSource>, IObservable<TResult>>) | Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initial value. |
![]() ![]() |
Replay<TSource>(IObservable<TSource>, Int32) | Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. |
![]() ![]() |
Replay<TSource>(IObservable<TSource>, IScheduler) | Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. |
![]() ![]() |
Replay<TSource>(IObservable<TSource>, TimeSpan) | Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. |
![]() ![]() |
Replay<TSource, TResult>(IObservable<TSource>, Func<IObservable<TSource>, IObservable<TResult>>, Int32) | Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. |
![]() ![]() |
Replay<TSource, TResult>(IObservable<TSource>, Func<IObservable<TSource>, IObservable<TResult>>, IScheduler) | Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. |
![]() ![]() |
Replay<TSource, TResult>(IObservable<TSource>, Func<IObservable<TSource>, IObservable<TResult>>, TimeSpan) | Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. |
![]() ![]() |
Replay<TSource>(IObservable<TSource>, Int32, IScheduler) | Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. |
![]() ![]() |
Replay<TSource>(IObservable<TSource>, Int32, TimeSpan) | Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. |
![]() ![]() |
Replay<TSource>(IObservable<TSource>, TimeSpan, IScheduler) | Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. |
![]() ![]() |
Replay<TSource, TResult>(IObservable<TSource>, Func<IObservable<TSource>, IObservable<TResult>>, Int32, IScheduler) | Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. |
![]() ![]() |
Replay<TSource, TResult>(IObservable<TSource>, Func<IObservable<TSource>, IObservable<TResult>>, Int32, TimeSpan) | Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. |
![]() ![]() |
Replay<TSource, TResult>(IObservable<TSource>, Func<IObservable<TSource>, IObservable<TResult>>, TimeSpan, IScheduler) | Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. |
![]() ![]() |
Replay<TSource>(IObservable<TSource>, Int32, TimeSpan, IScheduler) | Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. |
![]() ![]() |
Replay<TSource, TResult>(IObservable<TSource>, Func<IObservable<TSource>, IObservable<TResult>>, Int32, TimeSpan, IScheduler) | Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. |
Top