Uses of Class
rx.subscriptions.CompositeSubscription
-
Packages that use CompositeSubscription Package Description rx.internal.operators Operators that allow composing Observables to transform and manipulate data in an asynchronous, functional and thread-safe manner.rx.internal.schedulers rx.observables Classes extending the Observable base reactive class, synchronous and asynchronous event generators.rx.subscriptions Default implementations for Subscription-based resource management (Subscription container types) and utility classes to construct Subscriptions from callbacks and other types. -
-
Uses of CompositeSubscription in rx.internal.operators
Fields in rx.internal.operators declared as CompositeSubscription Modifier and Type Field Description (package private) CompositeSubscriptionOnSubscribeRefCount. baseSubscriptionprivate CompositeSubscriptionOperatorZip.Zip. childSubscription(package private) CompositeSubscriptionOperatorBufferWithStartEndObservable.BufferingSubscriber. closingSubscriptions(package private) CompositeSubscriptionOperatorWindowWithStartEndObservable.SourceSubscriber. csub(package private) CompositeSubscriptionOnSubscribeGroupJoin.ResultManager. group(package private) CompositeSubscriptionOnSubscribeJoin.ResultSink. group(package private) CompositeSubscriptionCompletableOnSubscribeMerge.CompletableMergeSubscriber. set(package private) CompositeSubscriptionOperatorMerge.MergeSubscriber. subscriptionsTracks the active subscriptions to sources.Methods in rx.internal.operators that return CompositeSubscription Modifier and Type Method Description (package private) CompositeSubscriptionOperatorMerge.MergeSubscriber. getOrCreateComposite()Methods in rx.internal.operators with parameters of type CompositeSubscription Modifier and Type Method Description private SubscriptionOnSubscribeRefCount. disconnect(CompositeSubscription current)(package private) voidOnSubscribeRefCount. doSubscribe(Subscriber<? super T> subscriber, CompositeSubscription currentBase)Constructors in rx.internal.operators with parameters of type CompositeSubscription Constructor Description SourceSubscriber(Subscriber<? super Observable<T>> child, CompositeSubscription csub) -
Uses of CompositeSubscription in rx.internal.schedulers
Fields in rx.internal.schedulers declared as CompositeSubscription Modifier and Type Field Description private CompositeSubscriptionCachedThreadScheduler.CachedWorkerPool. allWorkersprivate CompositeSubscriptionCachedThreadScheduler.EventLoopWorker. innerSubscription(package private) CompositeSubscriptionScheduledAction.Remover. parent(package private) CompositeSubscriptionExecutorScheduler.ExecutorSchedulerWorker. tasksprivate CompositeSubscriptionEventLoopsScheduler.EventLoopWorker. timedMethods in rx.internal.schedulers with parameters of type CompositeSubscription Modifier and Type Method Description voidScheduledAction. addParent(CompositeSubscription parent)Adds a parentCompositeSubscriptionto thisScheduledActionso when the action is cancelled or terminates, it can remove itself from this parent.ScheduledActionNewThreadWorker. scheduleActual(Action0 action, long delayTime, java.util.concurrent.TimeUnit unit, CompositeSubscription parent)Constructors in rx.internal.schedulers with parameters of type CompositeSubscription Constructor Description Remover(ScheduledAction s, CompositeSubscription parent)ScheduledAction(Action0 action, CompositeSubscription parent) -
Uses of CompositeSubscription in rx.observables
Fields in rx.observables declared as CompositeSubscription Modifier and Type Field Description (package private) CompositeSubscriptionAsyncOnSubscribe.AsyncOuterManager. subscriptions -
Uses of CompositeSubscription in rx.subscriptions
Methods in rx.subscriptions that return CompositeSubscription Modifier and Type Method Description static CompositeSubscriptionSubscriptions. from(Subscription... subscriptions)Converts a set ofSubscriptions into aCompositeSubscriptionthat groups the multiple Subscriptions together and unsubscribes from all of them together.
-