All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rx.operators.SafeObservableSubscription Maven / Gradle / Ivy

There is a newer version: 0.20.7
Show newest version
/**
 * 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.operators;

import java.util.concurrent.atomic.AtomicReference;

import rx.Subscription;

/**
 * Thread-safe wrapper around Observable Subscription that ensures unsubscribe can be called only once.
 * 
 * @deprecated since `Observer` now implements `Subscription` and `CompositeSubscription` etc handle these things
 */
@Deprecated
public final class SafeObservableSubscription implements Subscription {

    private static final Subscription UNSUBSCRIBED = new Subscription()
    {
        @Override
        public void unsubscribe()
        {
        }

        @Override
        public boolean isUnsubscribed() {
            return true;
        }
    };
    private final AtomicReference actualSubscription = new AtomicReference();

    public SafeObservableSubscription() {
    }

    public SafeObservableSubscription(Subscription actualSubscription) {
        this.actualSubscription.set(actualSubscription);
    }

    /**
     * Wraps the actual subscription once it exists (if it wasn't available when constructed)
     * 
     * @param actualSubscription
     *            the wrapped subscription
     * @throws IllegalStateException
     *             if trying to set more than once (or use this method after setting via constructor)
     */
    public SafeObservableSubscription wrap(Subscription actualSubscription) {
        if (!this.actualSubscription.compareAndSet(null, actualSubscription)) {
            if (this.actualSubscription.get() == UNSUBSCRIBED) {
                actualSubscription.unsubscribe();
                return this;
            }
            throw new IllegalStateException("Can not set subscription more than once.");
        }
        return this;
    }

    @Override
    public void unsubscribe() {
        // get the real thing and set to null in an atomic operation so we will only ever call unsubscribe once
        Subscription actual = actualSubscription.getAndSet(UNSUBSCRIBED);
        // if it's not null we will unsubscribe
        if (actual != null) {
            actual.unsubscribe();
        }
    }

    public boolean isUnsubscribed() {
        return actualSubscription.get() == UNSUBSCRIBED;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy