Package org.web3j.utils
Class Flowables
java.lang.Object
org.web3j.utils.Flowables
Flowable utility functions.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic io.reactivex.Flowable<BigInteger>range(BigInteger startValue, BigInteger endValue) static io.reactivex.Flowable<BigInteger>range(BigInteger startValue, BigInteger endValue, boolean ascending) SimpleFlowableimplementation to emit a range of BigInteger values.
-
Constructor Details
-
Flowables
public Flowables()
-
-
Method Details
-
range
-
range
public static io.reactivex.Flowable<BigInteger> range(BigInteger startValue, BigInteger endValue, boolean ascending) SimpleFlowableimplementation to emit a range of BigInteger values.- Parameters:
startValue- first value to emit in rangeendValue- final value to emit in rangeascending- direction to iterate through range- Returns:
- a
Flowableinstance to emit this range of values
-