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
Copy file name to clipboardExpand all lines: language-adaptors/rxjava-scala/src/main/scala/rx/lang/scala/Observable.scala
+23-24Lines changed: 23 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -302,45 +302,44 @@ trait Observable[+T]
302
302
* Creates an Observable which produces buffers of collected values.
303
303
*
304
304
* 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
305
+
* emitted and replaced with a new buffer when the Observable produced by the specified function produces an object. The function will then
306
306
* be used to create a new Observable to listen for the end of the next buffer.
307
307
*
308
308
* @paramclosings
309
309
* 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
310
+
* When this [[rx.lang.scala.Observable]] produces an object, the associated buffer
311
311
* is emitted and replaced with a new one.
312
312
* @return
313
313
* 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.
314
+
* 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
323
*
325
324
* 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
325
+
* Observable produces an object. Additionally the function argument
327
326
* is used to create an Observable which produces [[rx.lang.scala.util.Closing]] objects. When this
328
327
* Observable produces such an object, the associated buffer is emitted.
329
328
*
330
329
* @paramopenings
331
-
* The [[rx.lang.scala.Observable]] which, when it produces a [[rx.lang.scala.util.Opening]] object, will cause
330
+
* The [[rx.lang.scala.Observable]] which, when it produces an object, will cause
332
331
* another buffer to be created.
333
332
* @paramclosings
334
333
* 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
334
+
* When this [[rx.lang.scala.Observable]] produces an object, the associated buffer
336
335
* is emitted.
337
336
* @return
338
337
* 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.
538
+
* Chunks are created when the specified `openings` Observable produces an object.
540
539
* Additionally the `closings` argument is used to create an Observable which produces [[rx.lang.scala.util.Closing]] objects.
541
540
* When this Observable produces such an object, the associated window is emitted.
542
541
*
543
542
* @paramopenings
544
-
* The [[rx.lang.scala.Observable]] which when it produces a [[rx.lang.scala.util.Opening]] object, will cause
543
+
* The [[rx.lang.scala.Observable]] which when it produces an object, will cause
545
544
* another window to be created.
546
545
* @paramclosings
547
546
* 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
547
+
* When this [[rx.lang.scala.Observable]] produces an object, the associated window
549
548
* is emitted.
550
549
* @return
551
550
* 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