Class Flowables

java.lang.Object
org.web3j.utils.Flowables

public class Flowables extends Object
Flowable utility functions.
  • Constructor Details

    • Flowables

      public Flowables()
  • Method Details

    • range

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

      public static io.reactivex.Flowable<BigInteger> range(BigInteger startValue, 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