Uses of Class
rx.subscriptions.CompositeSubscription
Packages that use CompositeSubscription
Package
Description
Operators that allow composing Observables to transform and
manipulate data in an asynchronous, functional and thread-safe manner.
Classes extending the Observable base reactive class, synchronous and
asynchronous event generators.
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 CompositeSubscriptionModifier and TypeFieldDescription(package private) CompositeSubscriptionOnSubscribeRefCount.baseSubscriptionprivate final CompositeSubscriptionOperatorZip.Zip.childSubscription(package private) final CompositeSubscriptionOperatorBufferWithStartEndObservable.BufferingSubscriber.closingSubscriptions(package private) final CompositeSubscriptionOperatorWindowWithStartEndObservable.SourceSubscriber.csub(package private) final CompositeSubscriptionOnSubscribeGroupJoin.ResultManager.group(package private) final CompositeSubscriptionOnSubscribeJoin.ResultSink.group(package private) final CompositeSubscriptionCompletableOnSubscribeMerge.CompletableMergeSubscriber.set(package private) CompositeSubscriptionOperatorMerge.MergeSubscriber.subscriptionsTracks the active subscriptions to sources.Methods in rx.internal.operators that return CompositeSubscriptionModifier and TypeMethodDescription(package private) CompositeSubscriptionOperatorMerge.MergeSubscriber.getOrCreateComposite()Methods in rx.internal.operators with parameters of type CompositeSubscriptionModifier and TypeMethodDescriptionprivate SubscriptionOnSubscribeRefCount.disconnect(CompositeSubscription current) (package private) voidOnSubscribeRefCount.doSubscribe(Subscriber<? super T> subscriber, CompositeSubscription currentBase) Constructors in rx.internal.operators with parameters of type CompositeSubscriptionModifierConstructorDescriptionSourceSubscriber(Subscriber<? super Observable<T>> child, CompositeSubscription csub) -
Uses of CompositeSubscription in rx.internal.schedulers
Fields in rx.internal.schedulers declared as CompositeSubscriptionModifier and TypeFieldDescriptionprivate final CompositeSubscriptionCachedThreadScheduler.CachedWorkerPool.allWorkersprivate final CompositeSubscriptionCachedThreadScheduler.EventLoopWorker.innerSubscription(package private) final CompositeSubscriptionScheduledAction.Remover.parent(package private) final CompositeSubscriptionExecutorScheduler.ExecutorSchedulerWorker.tasksprivate final CompositeSubscriptionEventLoopsScheduler.EventLoopWorker.timedMethods in rx.internal.schedulers with parameters of type CompositeSubscriptionModifier and TypeMethodDescriptionvoidScheduledAction.addParent(CompositeSubscription parent) Adds a parentCompositeSubscriptionto thisScheduledActionso when the action is cancelled or terminates, it can remove itself from this parent.NewThreadWorker.scheduleActual(Action0 action, long delayTime, TimeUnit unit, CompositeSubscription parent) Constructors in rx.internal.schedulers with parameters of type CompositeSubscriptionModifierConstructorDescriptionRemover(ScheduledAction s, CompositeSubscription parent) ScheduledAction(Action0 action, CompositeSubscription parent) -
Uses of CompositeSubscription in rx.observables
Fields in rx.observables declared as CompositeSubscriptionModifier and TypeFieldDescription(package private) final CompositeSubscriptionAsyncOnSubscribe.AsyncOuterManager.subscriptions -
Uses of CompositeSubscription in rx.subscriptions
Methods in rx.subscriptions that return CompositeSubscriptionModifier and TypeMethodDescriptionstatic CompositeSubscriptionSubscriptions.from(Subscription... subscriptions) Converts a set ofSubscriptions into aCompositeSubscriptionthat groups the multiple Subscriptions together and unsubscribes from all of them together.