Returns the default internal buffer size used by most async operators. The value can be overridden via system parameter rx3.buffer-size before the Flowable class is loaded. @return the default internal buffer size.
()
| 251 | * @return the default internal buffer size. |
| 252 | */ |
| 253 | @CheckReturnValue |
| 254 | public static int bufferSize() { |
| 255 | return BUFFER_SIZE; |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Combines a collection of source {@link Publisher}s by emitting an item that aggregates the latest values of each of |
no outgoing calls