X Tutup
/** * 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; import rx.internal.util.SubscriptionList; import rx.subscriptions.CompositeSubscription; /** * Provides a mechanism for receiving push-based notifications from Observables, and permits manual * unsubscribing from these Observables. *

* After a Subscriber calls an {@link Observable}'s {@link Observable#subscribe subscribe} method, the * {@link Observable} calls the Subscriber's {@link #onNext} method to emit items. A well-behaved * {@link Observable} will call a Subscriber's {@link #onCompleted} method exactly once or the Subscriber's * {@link #onError} method exactly once. * * @see RxJava Wiki: Observable * @param * the type of items the Subscriber expects to observe */ public abstract class Subscriber implements Observer, Subscription { private final SubscriptionList cs; @Deprecated protected Subscriber(CompositeSubscription cs) { this.cs = new SubscriptionList(); add(cs); } protected Subscriber() { this.cs = new SubscriptionList(); } protected Subscriber(Subscriber op) { this.cs = op.cs; } /** * Adds a {@link Subscription} to this Subscriber's list of subscriptions if this list is not marked as * unsubscribed. If the list is marked as unsubscribed, {@code add} will indicate this by * explicitly unsubscribing the new {@code Subscription} as well. * * @param s the {@code Subscription} to add */ public final void add(Subscription s) { cs.add(s); } @Override public final void unsubscribe() { cs.unsubscribe(); } /** * Indicates whether this Subscriber has unsubscribed from its list of subscriptions. * * @return {@code true} if this Subscriber has unsubscribed from its subscriptions, {@code false} otherwise */ public final boolean isUnsubscribed() { return cs.isUnsubscribed(); } }

X Tutup