Skip to content

Instantly share code, notes, and snippets.

@kellyellis
kellyellis / CacheStore.java
Created May 14, 2015 16:51
A Guava Cache-based reactive store
import com.google.common.cache.Cache;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import rx.Observable;
import rx.subjects.BehaviorSubject;
import rx.subjects.PublishSubject;
import rx.subjects.Subject;