本文整理汇总了Java中com.jakewharton.rxrelay2.BehaviorRelay.createDefault方法的典型用法代码示例。如果您正苦于以下问题:Java BehaviorRelay.createDefault方法的具体用法?Java BehaviorRelay.createDefault怎么用?Java BehaviorRelay.createDefault使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.jakewharton.rxrelay2.BehaviorRelay
的用法示例。
在下文中一共展示了BehaviorRelay.createDefault方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: bind_whenInteractorDetached_shouldStopWorker
import com.jakewharton.rxrelay2.BehaviorRelay; //导入方法依赖的package包/类
@Test
public void bind_whenInteractorDetached_shouldStopWorker() {
BehaviorRelay<InteractorEvent> lifecycle = BehaviorRelay.createDefault(InteractorEvent.ACTIVE);
bind(lifecycle, worker);
lifecycle.accept(InteractorEvent.INACTIVE);
verify(worker).onStop();
}
示例2: bind_whenSubscribingWithWorkerLifecycle_shouldMapToWorkerStopEvent
import com.jakewharton.rxrelay2.BehaviorRelay; //导入方法依赖的package包/类
@Test
public void bind_whenSubscribingWithWorkerLifecycle_shouldMapToWorkerStopEvent() {
BehaviorRelay<InteractorEvent> lifecycle = BehaviorRelay.createDefault(InteractorEvent.ACTIVE);
bind(lifecycle, worker);
verify(worker).onStart(argumentCaptor.capture());
Maybe observable = argumentCaptor.getValue().requestScope();
WorkerEventCallback callback = new WorkerEventCallback();
observable.subscribe(callback);
lifecycle.accept(InteractorEvent.INACTIVE);
assertThat(callback.getWorkerEvent()).isEqualTo(WorkerEvent.STOP);
}
示例3: bind_whenSubscribingWithWorkerLifecycle_shouldMapToWorkerStartEvent
import com.jakewharton.rxrelay2.BehaviorRelay; //导入方法依赖的package包/类
@Test
public void bind_whenSubscribingWithWorkerLifecycle_shouldMapToWorkerStartEvent() {
BehaviorRelay<InteractorEvent> lifecycle = BehaviorRelay.createDefault(InteractorEvent.ACTIVE);
bind(lifecycle, worker);
verify(worker).onStart(argumentCaptor.capture());
Maybe observable = argumentCaptor.getValue().requestScope();
WorkerEventCallback callback = new WorkerEventCallback();
observable.subscribe(callback);
lifecycle.accept(InteractorEvent.ACTIVE);
assertThat(callback.getWorkerEvent()).isEqualTo(WorkerEvent.START);
}
示例4: unbind_whenInteractorAttached_shouldStopWorker
import com.jakewharton.rxrelay2.BehaviorRelay; //导入方法依赖的package包/类
@Test
public void unbind_whenInteractorAttached_shouldStopWorker() {
BehaviorRelay<InteractorEvent> lifecycle = BehaviorRelay.createDefault(InteractorEvent.ACTIVE);
WorkerUnbinder unbinder = bind(lifecycle, worker);
unbinder.unbind();
verify(worker).onStop();
}
示例5: unbind_whenSubscribingWithWorkerLifecycle_shouldMapToWorkerStopEvent
import com.jakewharton.rxrelay2.BehaviorRelay; //导入方法依赖的package包/类
@Test
public void unbind_whenSubscribingWithWorkerLifecycle_shouldMapToWorkerStopEvent() {
BehaviorRelay<InteractorEvent> lifecycle = BehaviorRelay.createDefault(InteractorEvent.ACTIVE);
WorkerUnbinder unbinder = bind(lifecycle, worker);
verify(worker).onStart(argumentCaptor.capture());
Maybe observable = argumentCaptor.getValue().requestScope();
WorkerEventCallback callback = new WorkerEventCallback();
observable.subscribe(callback);
unbinder.unbind();
assertThat(callback.getWorkerEvent()).isEqualTo(WorkerEvent.STOP);
}
示例6: unbind_whenOutsideInteractorLifecycle_shouldNotCallStopAgain
import com.jakewharton.rxrelay2.BehaviorRelay; //导入方法依赖的package包/类
@Test
public void unbind_whenOutsideInteractorLifecycle_shouldNotCallStopAgain() {
BehaviorRelay<InteractorEvent> lifecycle =
BehaviorRelay.createDefault(InteractorEvent.INACTIVE);
WorkerUnbinder unbinder = bind(lifecycle, worker);
verify(worker, times(1)).onStop();
unbinder.unbind();
verify(worker, times(1)).onStop();
}
示例7: bind_whenInteractorAttached_shouldStartWorker
import com.jakewharton.rxrelay2.BehaviorRelay; //导入方法依赖的package包/类
@Test
public void bind_whenInteractorAttached_shouldStartWorker() {
BehaviorRelay<InteractorEvent> lifecycle = BehaviorRelay.createDefault(InteractorEvent.ACTIVE);
bind(lifecycle, worker);
verify(worker).onStart(Matchers.<WorkerScopeProvider>any());
}
示例8: onInactive_whenAfterUnbind_shouldNotCallStopAgain
import com.jakewharton.rxrelay2.BehaviorRelay; //导入方法依赖的package包/类
@Test
public void onInactive_whenAfterUnbind_shouldNotCallStopAgain() {
BehaviorRelay<InteractorEvent> lifecycle = BehaviorRelay.createDefault(InteractorEvent.ACTIVE);
WorkerUnbinder unbinder = bind(lifecycle, worker);
unbinder.unbind();
verify(worker, times(1)).onStop();
lifecycle.accept(InteractorEvent.INACTIVE);
verify(worker, times(1)).onStop();
}