Created
June 7, 2017 16:29
-
-
Save marcin-adamczewski/47c65af34cbc00254e9826ace4a45db3 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
favoritesCache = new Cache<Integer, BehaviorSubject<Boolean>>(new Cache.CacheProvider<>() { | |
@Override | |
public BehaviorSubject<Boolean> load(@Nonnull final Integer postId) { | |
return BehaviorSubject.create(false); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment