RxJava-缓存直到排放闲置一段时间?

时间:2015-09-29 16:27:28

标签: java reactive-programming rx-java

我经常遇到一种模式,我不太确定如何有效地绕过它。

基本上,如果我有一个Observable<T>持有一个昂贵的项T,我不希望每次使用它时重新构建该T项,或将其映射到千种不同的其他可观察物,将导致它被建造1000次。

所以我开始使用replay()将其缓存一段时间,但理想情况下,我希望在排放闲置一段时间后清除缓存。

是否有可以使用的操作员或变压器来完成此操作?

public final class ActionManager {

    private final Observable<ImmutableList<Action>> actionMap;

    private ActionManager() { 
        this.actionMap = Observable.defer(() -> buildExpensiveList()).replay(10, TimeUnit.SECONDS).autoConnect();
    }

    //this method could get called thousands of times
    //I don't want to rebuild the map for every call

    public Observable<Action> forItem(Item item) { 
        actionMap.map(l -> //get Action for item);
    }


}

更新

尝试将其实现为Transformer / Operator组合。我在这里做错了吗?

   public static <T> Transformer<T,T> recacheOnIdle(long time, TimeUnit timeUnit) { 

        return obs -> obs.timeout(time, timeUnit).lift(new Operator<T,T>() {

            private volatile T cachedItem;
            private volatile boolean isCurrent = false;

            @Override
            public Subscriber<? super T> call(Subscriber<? super T> s) {
                return new Subscriber<T>(s) {
                    @Override
                    public void onCompleted() {
                         if(!s.isUnsubscribed()) {
                              s.onCompleted();
                         }
                    }
                    @Override
                    public void onError(Throwable e) {
                        if(!s.isUnsubscribed()) {
                            if (e instanceof TimeoutException) { 
                                isCurrent = false;
                                cachedItem = null;
                            } else { 
                                s.onError(e);
                            }
                        }
                    }

                    @Override
                    public void onNext(T t) {
                        if(!s.isUnsubscribed()) { 
                            if (!isCurrent) { 
                                cachedItem = t;
                            }
                            s.onNext(cachedItem);
                        }
                    } 
                };
            }

        });
    }

2 个答案:

答案 0 :(得分:3)

您可以使用timeout operatorconnectable observable(以保留和同步多个订阅者):

  

镜像源Observable,但如果特定时间段过去没有任何发出的项目,则发出错误通知

这样你可以通过重新缓存昂贵的项目来响应抛出的错误。假设这是一个“罕见”的案例:

// if no emissions are made for a period of 3 seconds - will call onError
observableWithCache.timeout(3000, TimeUnit.MILLISECONDS).subscribe(new Subscriber<SomeObject>() {

    public void onCompleted() {

    }

    public void onError(Throwable arg0) {
        doClearCache(); // make sure to re-subscribe with timeout
    }

    public void onNext(SomeObject item) {
        System.out.println("Got item: " + item); // you can ignore this
    }
});

请注意,onError不会取消原始的observable,如图所示:

enter image description here

但是你可以对没有排放的一段时间作出反应。

答案 1 :(得分:0)

看一下我为rxjava2创建的gist。这是一个自定义变换器,它会在一段时间内保持缓存值。