Skip to content

Instantly share code, notes, and snippets.

@trevorrjohn
Last active November 10, 2015 03:35
Show Gist options
  • Save trevorrjohn/7270d86c08617c122111 to your computer and use it in GitHub Desktop.
Save trevorrjohn/7270d86c08617c122111 to your computer and use it in GitHub Desktop.
public class TestSub<T>
implements Observable.OnSubscribe<T> {
Subscriber<T> sub;
public void call(Subscriber<T> sub) {
this.sub = sub;
}
public void onNext(T data) {
sub.onNext(data);
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment