Despite many convenience operators, the operator set of RxJava is still very basic. Rx offers the building blocks that you combine, but eventually you will want to define common cases that repeat within your application. in standard Java, this would be done with custom classes and methods. In Rx, you would like to design custom operators. For example, there is no operator for calculating a running average from a sequence of numbers. But you can make one yourself:
0 commit comments