Back to project page u2020.
The source code is released under:
Apache License
If you think the Android project u2020 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jakewharton.u2020.data.rx; /* ww w . j a va2s .c o m*/ import rx.Observer; /** An {@link Observer} that always informs when it's ended. */ public abstract class EndObserver<T> implements Observer<T> { @Override public void onCompleted() { onEnd(); } @Override public void onError(Throwable throwable) { onEnd(); } public abstract void onEnd(); }