-
Couldn't load subscription status.
- Fork 29
Description
Hi David,
We are using rxjava-extras as a dependency:
https://mvnrepository.com/artifact/com.microsoft.azure/azure-cosmosdb/1.0.0
https://github.com/Azure/azure-cosmosdb-java
We are using Transformer.orderedMergeWith.
It appears to me that in the implementation of BackPressure for the above operator for each of the source observables, RxRingBuffer.SIZE items will be buffered. Am I right?
rxjava-extras/src/main/java/com/github/davidmoten/rx/internal/operators/OrderedMerge.java
Line 307 in 08e66ff
| request(RxRingBuffer.SIZE); |
If not already supported, is that possible to provide a overload for Transformer.orderedMergeWith which allows configuring the buffered size for each source observable? It is critical for our use case.
Thank you @davidmoten