Forked from hamidp/ContinueWithIfEmptyOperator.java
Last active
August 29, 2015 14:07
-
-
Save dallasgutauckis/021cf1d32e0be281902f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.trello.core.rx; | |
import rx.Observable; | |
import rx.Subscriber; | |
/** | |
* Passes control to another Observable if the source observable does not emit any items. | |
* | |
* Handy if you've a CacheObservable that does a cheap lookup and a DoHardWorkObservable that does the | |
* hard work and you want to only do the hard work if CacheObservable is empty. | |
* | |
* You'd do something like: CacheObservable.lift(new ContinueWithOperator(DoHardWorkObservable)). | |
*/ | |
public class ContinueWithIfEmptyOperator<T> implements Observable.Operator<T, T> { | |
private final Observable<? extends T> mResumeObservable; | |
public ContinueWithIfEmptyOperator(Observable<? extends T> resumeObservable) { | |
mResumeObservable = resumeObservable; | |
} | |
@Override | |
public Subscriber<? super T> call(final Subscriber<? super T> child) { | |
Subscriber<T> s = new Subscriber<T>() { | |
boolean mHasEmitted; | |
@Override | |
public void onNext(T t) { | |
if (!child.isUnsubscribed()) { | |
mHasEmitted = true; | |
child.onNext(t); | |
} | |
} | |
@Override | |
public void onError(Throwable e) { | |
if (!child.isUnsubscribed()) { | |
child.onError(e); | |
} | |
} | |
@Override | |
public void onCompleted() { | |
if (child.isUnsubscribed()) { | |
return; | |
} | |
if (mHasEmitted) { | |
child.onCompleted(); | |
return; | |
} | |
// Nothing emitted, so we subscribe to the resume observable | |
unsubscribe(); | |
mResumeObservable.unsafeSubscribe(child); | |
} | |
}; | |
child.add(s); | |
return s; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment