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
* Creates an Observable which produces buffers of collected values.
303
302
*
304
303
* This Observable produces connected non-overlapping buffers. The current buffer is
305
-
* emitted and replaced with a new buffer when the Observable produced by the specified function produces a [[rx.lang.scala.util.Closing]] object. The function will then
304
+
* emitted and replaced with a new buffer when the Observable produced by the specified function produces an object. The function will then
306
305
* be used to create a new Observable to listen for the end of the next buffer.
307
306
*
308
307
* @paramclosings
309
308
* The function which is used to produce an [[rx.lang.scala.Observable]] for every buffer created.
310
-
* When this [[rx.lang.scala.Observable]] produces a [[rx.lang.scala.util.Closing]] object, the associated buffer
309
+
* When this [[rx.lang.scala.Observable]] produces an object, the associated buffer
311
310
* is emitted and replaced with a new one.
312
311
* @return
313
312
* An [[rx.lang.scala.Observable]] which produces connected non-overlapping buffers, which are emitted
314
-
* when the current [[rx.lang.scala.Observable]] created with the function argument produces a [[rx.lang.scala.util.Closing]] object.
313
+
* when the current [[rx.lang.scala.Observable]] created with the function argument produces an object.
* Creates an Observable which produces buffers of collected values.
324
322
*
325
323
* This Observable produces buffers. Buffers are created when the specified `openings`
326
-
* Observable produces a [[rx.lang.scala.util.Opening]] object. Additionally the function argument
324
+
* Observable produces an object. Additionally the function argument
327
325
* is used to create an Observable which produces [[rx.lang.scala.util.Closing]] objects. When this
328
326
* Observable produces such an object, the associated buffer is emitted.
329
327
*
330
328
* @paramopenings
331
-
* The [[rx.lang.scala.Observable]] which, when it produces a [[rx.lang.scala.util.Opening]] object, will cause
329
+
* The [[rx.lang.scala.Observable]] which, when it produces an object, will cause
332
330
* another buffer to be created.
333
331
* @paramclosings
334
332
* The function which is used to produce an [[rx.lang.scala.Observable]] for every buffer created.
335
-
* When this [[rx.lang.scala.Observable]] produces a [[rx.lang.scala.util.Closing]] object, the associated buffer
333
+
* When this [[rx.lang.scala.Observable]] produces an object, the associated buffer
336
334
* is emitted.
337
335
* @return
338
336
* An [[rx.lang.scala.Observable]] which produces buffers which are created and emitted when the specified [[rx.lang.scala.Observable]]s publish certain objects.
* Creates an Observable which produces windows of collected values. This Observable produces windows.
539
-
* Chunks are created when the specified `openings` Observable produces a [[rx.lang.scala.util.Opening]] object.
537
+
* Chunks are created when the specified `openings` Observable produces an object.
540
538
* Additionally the `closings` argument is used to create an Observable which produces [[rx.lang.scala.util.Closing]] objects.
541
539
* When this Observable produces such an object, the associated window is emitted.
542
540
*
543
541
* @paramopenings
544
-
* The [[rx.lang.scala.Observable]] which when it produces a [[rx.lang.scala.util.Opening]] object, will cause
542
+
* The [[rx.lang.scala.Observable]] which when it produces an object, will cause
545
543
* another window to be created.
546
544
* @paramclosings
547
545
* The function which is used to produce an [[rx.lang.scala.Observable]] for every window created.
548
-
* When this [[rx.lang.scala.Observable]] produces a [[rx.lang.scala.util.Closing]] object, the associated window
546
+
* When this [[rx.lang.scala.Observable]] produces an object, the associated window
549
547
* is emitted.
550
548
* @return
551
549
* An [[rx.lang.scala.Observable]] which produces windows which are created and emitted when the specified [[rx.lang.scala.Observable]]s publish certain objects.
0 commit comments