Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
223 changes: 129 additions & 94 deletions src/main/java/rx/Observable.java

Large diffs are not rendered by default.

76 changes: 76 additions & 0 deletions src/main/java/rx/internal/operators/OnSubscribeCache.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/**
* Copyright 2014 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package rx.internal.operators;

import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;

import rx.Observable;
import rx.Observable.OnSubscribe;
import rx.Subscriber;
import rx.subjects.ReplaySubject;
import rx.subjects.Subject;

/**
* This method has similar behavior to {@link Observable#replay()} except that this auto-subscribes
* to the source Observable rather than returning a connectable Observable.
* <p>
* <img width="640" src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/cache.png" alt="">
* <p>
* This is useful with an Observable that you want to cache responses when you can't control the
* subscribe/unsubscribe behavior of all the Observers.
* <p>
* <em>Note:</em> You sacrifice the ability to unsubscribe from the origin when you use this operator, so be
* careful not to use this operator on Observables that emit infinite or very large numbers of
* items, as this will use up memory.
*
* @param <T>
* the cached value type
*/
public final class OnSubscribeCache<T> implements OnSubscribe<T> {
protected final Observable<? extends T> source;
protected final Subject<? super T, ? extends T> cache;
volatile int sourceSubscribed;
@SuppressWarnings("rawtypes")
static final AtomicIntegerFieldUpdater<OnSubscribeCache> SRC_SUBSCRIBED_UPDATER
= AtomicIntegerFieldUpdater.newUpdater(OnSubscribeCache.class, "sourceSubscribed");

public OnSubscribeCache(Observable<? extends T> source) {
this(source, ReplaySubject.<T> create());
}

public OnSubscribeCache(Observable<? extends T> source, int capacity) {
this(source, ReplaySubject.<T> create(capacity));
}

/* accessible to tests */OnSubscribeCache(Observable<? extends T> source, Subject<? super T, ? extends T> cache) {
this.source = source;
this.cache = cache;
}

@Override
public void call(Subscriber<? super T> s) {
if (SRC_SUBSCRIBED_UPDATER.compareAndSet(this, 0, 1)) {
source.subscribe(cache);
/*
* Note that we will never unsubscribe from 'source' unless we receive `onCompleted` or `onError`,
* as we want to receive and cache all of its values.
*
* This means this should never be used on an infinite or very large sequence, similar to toList().
*/
}
cache.unsafeSubscribe(s);
}
}
Loading