Skip to content

Instantly share code, notes, and snippets.

@omegasoft7
Created February 9, 2016 12:38
Show Gist options
  • Save omegasoft7/691b87b585022d57a092 to your computer and use it in GitHub Desktop.
Save omegasoft7/691b87b585022d57a092 to your computer and use it in GitHub Desktop.
createObservable RxJava
public static Observable<String> createObservable(){
return Observable.create((Subscriber<? super String> subscriber) -> {
subscriber.onNext(Thread.currentThread().getName());
subscriber.onCompleted();
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment