Last active
October 13, 2016 18:28
-
-
Save thenickreynolds/03f6e6de94c868868d185e06ae0a4f5e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
protected <T> void subscribe(Observable<T> observable, ResubscriptionObserver<T> observer) { | |
observable.compose(observableGroup.<T>transform(observer.resubscriptionTag().toString())) | |
.subscribe(observer); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@felipecsl - let's add this to the groups class, also strange you need to convert from object to string as we discussed