Class Flowables


  • public class Flowables
    extends java.lang.Object
    Flowable utility functions.
    • Constructor Summary

      Constructors 
      Constructor Description
      Flowables()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static io.reactivex.Flowable<java.math.BigInteger> range​(java.math.BigInteger startValue, java.math.BigInteger endValue)  
      static io.reactivex.Flowable<java.math.BigInteger> range​(java.math.BigInteger startValue, java.math.BigInteger endValue, boolean ascending)
      Simple Flowable implementation to emit a range of BigInteger values.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Flowables

        public Flowables()
    • Method Detail

      • range

        public static io.reactivex.Flowable<java.math.BigInteger> range​(java.math.BigInteger startValue,
                                                                        java.math.BigInteger endValue)
      • range

        public static io.reactivex.Flowable<java.math.BigInteger> range​(java.math.BigInteger startValue,
                                                                        java.math.BigInteger endValue,
                                                                        boolean ascending)
        Simple Flowable implementation to emit a range of BigInteger values.
        Parameters:
        startValue - first value to emit in range
        endValue - final value to emit in range
        ascending - direction to iterate through range
        Returns:
        a Flowable instance to emit this range of values