We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Delay the subscription of each subscription in a DualOperator until the observable needs to be subscribed to. For instance:
DualOperator
Observable<Integer> nums; DyadObservable.sparseProduct(nums, this::factorsOfInteger) .filter1((Integer i) -> { return i % 2 != 0; }) .bimap((Integer root, Integer factor) -> { return root + " : " + factor; }) .subscribe();
The method Observable<Integer> factorsOfInteger(Integer) should never be called for any even integer.
Observable<Integer> factorsOfInteger(Integer)
Delay the subscription of each subscription in a
DualOperatoruntil the observable needs to be subscribed to. For instance:The method
Observable<Integer> factorsOfInteger(Integer)should never be called for any even integer.