public class Observables
extends java.lang.Object
Constructor and Description |
---|
Observables() |
Modifier and Type | Method and Description |
---|---|
static rx.Observable<java.math.BigInteger> |
range(java.math.BigInteger startValue,
java.math.BigInteger endValue) |
static rx.Observable<java.math.BigInteger> |
range(java.math.BigInteger startValue,
java.math.BigInteger endValue,
boolean ascending)
Simple Observable implementation to emit a range of BigInteger values.
|
public static rx.Observable<java.math.BigInteger> range(java.math.BigInteger startValue, java.math.BigInteger endValue)
public static rx.Observable<java.math.BigInteger> range(java.math.BigInteger startValue, java.math.BigInteger endValue, boolean ascending)
startValue
- first value to emit in rangeendValue
- final value to emit in rangeascending
- direction to iterate through range