我有一个布尔的Observable。我想仅在当前布尔值与预览值不同时才发出值(另一个布尔值)。
booleanObservable
// which operator here
.subscribe(new Consumer<Boolean>() {
@Override
public void accept(Boolean emittedBoolean) throws Exception {
// do something with emittedBoolean
}
});