本文整理汇总了Java中com.github.davidmoten.rx.Functions.alwaysFalse方法的典型用法代码示例。如果您正苦于以下问题:Java Functions.alwaysFalse方法的具体用法?Java Functions.alwaysFalse怎么用?Java Functions.alwaysFalse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.github.davidmoten.rx.Functions
的用法示例。
在下文中一共展示了Functions.alwaysFalse方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testRetryWhenSpecificExceptionAllowedUsePredicateReturnsFalse
import com.github.davidmoten.rx.Functions; //导入方法依赖的package包/类
@Test
public void testRetryWhenSpecificExceptionAllowedUsePredicateReturnsFalse() {
Exception ex = new IllegalArgumentException("boo");
TestSubscriber<Integer> ts = TestSubscriber.create();
TestScheduler scheduler = new TestScheduler();
Func1<Throwable, Boolean> predicate = Functions.alwaysFalse();
Observable.just(1, 2)
// force error after 3 emissions
.concatWith(Observable.<Integer> error(ex))
// retry with backoff
.retryWhen(
RetryWhen.maxRetries(2).action(log).exponentialBackoff(1, TimeUnit.MINUTES)
.scheduler(scheduler).retryIf(predicate).build())
// go
.subscribe(ts);
ts.assertValues(1, 2);
ts.assertError(ex);
}
示例2: minTimeStep
import com.github.davidmoten.rx.Functions; //导入方法依赖的package包/类
public static <T extends HasFix> Downsample<T> minTimeStep(long duration, TimeUnit unit) {
return new Downsample<T>(unit.toMillis(duration), Functions.<T> alwaysFalse());
}