Back to project page rxloader.
The source code is released under:
Apache License
If you think the Android project rxloader 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 me.tatarka.rxloader; // w w w . j a v a 2 s . c o m import java.lang.ref.WeakReference; import rx.Observer; /** * @author Evan Tatarka */ interface RxLoaderBackend { <T> CachingWeakRefSubscriber<T> get(String tag); <T> void put(String tag, BaseRxLoader<T> rxLoader, CachingWeakRefSubscriber<T> subscriber); <T> void setSave(String tag, Observer<T> observer, WeakReference<SaveCallback<T>> saveCallbackRef); void unsubscribeAll(); void clearAll(); }