You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns an publisher sequence that **shares a single subscription to the underlying sequence**, and immediately upon subscription replays elements in buffer.
169
-
170
-
It uses optimized versions of the operators for most common operations.
171
-
- parameter replay: Maximum element count of the replay buffer.
172
-
- returns: A publisher sequence that contains the elements of a sequence produced by multicasting the source sequence.
173
-
*/
174
-
175
-
/// Provides a subject that shares a single subscription to the upstream publisher and replays at most `bufferSize` items emitted by that publisher
176
-
/// - Parameter bufferSize: limits the number of items that can be replayed
168
+
/// Returns an publisher sequence that **shares a single subscription to the underlying sequence**,
169
+
/// and immediately upon request with demand replays elements in buffer.
170
+
///
171
+
/// - parameter replay: Maximum element count of the replay buffer.
172
+
/// - returns: A publisher sequence that contains the elements of a sequence produced by multicasting the source sequence.
0 commit comments