
io.reactivex.subscribers.ResourceSubscriber Maven / Gradle / Ivy
Show all versions of rxjava Show documentation
/**
* Copyright 2016 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 io.reactivex.subscribers;
import org.reactivestreams.Subscriber;
import org.reactivestreams.Subscription;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicReference;
import io.reactivex.disposables.Disposable;
import io.reactivex.internal.disposables.ListCompositeDisposable;
import io.reactivex.internal.functions.ObjectHelper;
import io.reactivex.internal.subscriptions.SubscriptionHelper;
/**
* An abstract Subscriber that allows asynchronous cancellation of its subscription and associated resources.
*
* This implementation let's you chose if the AsyncObserver manages resources or not,
* thus saving memory on cases where there is no need for that.
*
*
All pre-implemented final methods are thread-safe.
*
* @param the value type
*/
public abstract class ResourceSubscriber implements Subscriber, Disposable {
/** The active subscription. */
private final AtomicReference s = new AtomicReference();
/** The resource composite, can never be null. */
private final ListCompositeDisposable resources = new ListCompositeDisposable();
/** Remembers the request(n) counts until a subscription arrives. */
private final AtomicLong missedRequested = new AtomicLong();
/**
* Adds a resource to this AsyncObserver.
*
* @param resource the resource to add
*
* @throws NullPointerException if resource is null
*/
public final void add(Disposable resource) {
ObjectHelper.requireNonNull(resource, "resource is null");
resources.add(resource);
}
@Override
public final void onSubscribe(Subscription s) {
if (SubscriptionHelper.deferredSetOnce(this.s, missedRequested, s)) {
onStart();
}
}
/**
* Called once the upstream sets a Subscription on this AsyncObserver.
*
* You can perform initialization at this moment. The default
* implementation requests Long.MAX_VALUE from upstream.
*/
protected void onStart() {
request(Long.MAX_VALUE);
}
/**
* Request the specified amount of elements from upstream.
*
*
This method can be called before the upstream calls onSubscribe().
* When the subscription happens, all missed requests are requested.
*
* @param n the request amount, must be positive
*/
protected final void request(long n) {
SubscriptionHelper.deferredRequest(s, missedRequested, n);
}
/**
* Cancels the subscription (if any) and disposes the resources associated with
* this AsyncObserver (if any).
*
*
This method can be called before the upstream calls onSubscribe at which
* case the Subscription will be immediately cancelled.
*/
@Override
public final void dispose() {
if (SubscriptionHelper.cancel(s)) {
resources.dispose();
}
}
/**
* Returns true if this AsyncObserver has been disposed/cancelled.
* @return true if this AsyncObserver has been disposed/cancelled
*/
@Override
public final boolean isDisposed() {
return SubscriptionHelper.isCancelled(s.get());
}
}