Skip to content

Commit

Permalink
Fix coalesce readme
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Jul 14, 2017
1 parent 65e242b commit 1c41d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ ts.assertResult("[2, 4]", "[4, 5]", "[6, 6]");
Coalesces items from upstream into a container via a consumer and emits the container if
there is a downstream demand, otherwise it keeps coalescing into the same container. Note
that the operator keeps an internal unbounded buffer to collect up upstream values before
the coalescing happens and thus a computational heavy upstream hogging the emission thread
the coalescing happens and thus a computational heavy downstream hogging the emission thread
may lead to excessive memory usage. It is recommended to use `observeOn` in this case.
```java
Expand Down

0 comments on commit 1c41d4a

Please sign in to comment.