- call(Completable.CompletableSubscriber) - Method in class hu.akarnokd.completable.internal.CompletableOnSubscribeConcat
-
- call(Completable.CompletableSubscriber) - Method in class hu.akarnokd.completable.internal.CompletableOnSubscribeConcatArray
-
- call(Completable.CompletableSubscriber) - Method in class hu.akarnokd.completable.internal.CompletableOnSubscribeConcatIterable
-
- call(Completable.CompletableSubscriber) - Method in class hu.akarnokd.completable.internal.CompletableOnSubscribeMerge
-
- call(Completable.CompletableSubscriber) - Method in class hu.akarnokd.completable.internal.CompletableOnSubscribeMergeArray
-
- call(Completable.CompletableSubscriber) - Method in class hu.akarnokd.completable.internal.CompletableOnSubscribeMergeDelayErrorArray
-
- call(Completable.CompletableSubscriber) - Method in class hu.akarnokd.completable.internal.CompletableOnSubscribeMergeDelayErrorIterable
-
- call(Completable.CompletableSubscriber) - Method in class hu.akarnokd.completable.internal.CompletableOnSubscribeMergeIterable
-
- call(Completable.CompletableSubscriber) - Method in class hu.akarnokd.completable.internal.CompletableOnSubscribeTimeout
-
- collectErrors(Queue<Throwable>) - Static method in class hu.akarnokd.completable.internal.CompletableOnSubscribeMerge
-
Collects the Throwables from the queue, adding subsequent Throwables as suppressed to
the first Throwable and returns it.
- Completable - Class in hu.akarnokd.completable
-
Represents a deferred computation without any value but only indication for completion or exception.
- Completable(Completable.CompletableOnSubscribe) - Constructor for class hu.akarnokd.completable.Completable
-
Constructs a Completable instance with the given onSubscribe callback.
- Completable.CompletableOnSubscribe - Interface in hu.akarnokd.completable
-
Callback used for building deferred computations that takes a CompletableSubscriber.
- Completable.CompletableOperator - Interface in hu.akarnokd.completable
-
Convenience interface and callback used by the lift operator that given a child CompletableSubscriber,
return a parent CompletableSubscriber that does any kind of lifecycle-related transformations.
- Completable.CompletableSubscriber - Interface in hu.akarnokd.completable
-
Represents the subscription API callbacks when subscribing to a Completable instance.
- Completable.CompletableTransformer - Interface in hu.akarnokd.completable
-
Convenience interface and callback used by the compose operator to turn a Completable into another
Completable fluently.
- CompletableOnSubscribeConcat - Class in hu.akarnokd.completable.internal
-
- CompletableOnSubscribeConcat(Observable<? extends Completable>, int) - Constructor for class hu.akarnokd.completable.internal.CompletableOnSubscribeConcat
-
- CompletableOnSubscribeConcatArray - Class in hu.akarnokd.completable.internal
-
- CompletableOnSubscribeConcatArray(Completable[]) - Constructor for class hu.akarnokd.completable.internal.CompletableOnSubscribeConcatArray
-
- CompletableOnSubscribeConcatIterable - Class in hu.akarnokd.completable.internal
-
- CompletableOnSubscribeConcatIterable(Iterable<? extends Completable>) - Constructor for class hu.akarnokd.completable.internal.CompletableOnSubscribeConcatIterable
-
- CompletableOnSubscribeMerge - Class in hu.akarnokd.completable.internal
-
- CompletableOnSubscribeMerge(Observable<? extends Completable>, int, boolean) - Constructor for class hu.akarnokd.completable.internal.CompletableOnSubscribeMerge
-
- CompletableOnSubscribeMergeArray - Class in hu.akarnokd.completable.internal
-
- CompletableOnSubscribeMergeArray(Completable[]) - Constructor for class hu.akarnokd.completable.internal.CompletableOnSubscribeMergeArray
-
- CompletableOnSubscribeMergeDelayErrorArray - Class in hu.akarnokd.completable.internal
-
- CompletableOnSubscribeMergeDelayErrorArray(Completable[]) - Constructor for class hu.akarnokd.completable.internal.CompletableOnSubscribeMergeDelayErrorArray
-
- CompletableOnSubscribeMergeDelayErrorIterable - Class in hu.akarnokd.completable.internal
-
- CompletableOnSubscribeMergeDelayErrorIterable(Iterable<? extends Completable>) - Constructor for class hu.akarnokd.completable.internal.CompletableOnSubscribeMergeDelayErrorIterable
-
- CompletableOnSubscribeMergeIterable - Class in hu.akarnokd.completable.internal
-
- CompletableOnSubscribeMergeIterable(Iterable<? extends Completable>) - Constructor for class hu.akarnokd.completable.internal.CompletableOnSubscribeMergeIterable
-
- CompletableOnSubscribeTimeout - Class in hu.akarnokd.completable.internal
-
- CompletableOnSubscribeTimeout(Completable, long, TimeUnit, Scheduler, Completable) - Constructor for class hu.akarnokd.completable.internal.CompletableOnSubscribeTimeout
-
- complete() - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that completes immediately when subscribed to.
- compose(Completable.CompletableTransformer) - Method in class hu.akarnokd.completable.Completable
-
Calls the given transformer function with this instance and returns the function's resulting
Completable.
- concat(Completable...) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable which completes only when all sources complete, one after another.
- concat(Iterable<? extends Completable>) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable which completes only when all sources complete, one after another.
- concat(Observable<? extends Completable>) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable which completes only when all sources complete, one after another.
- concat(Observable<? extends Completable>, int) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable which completes only when all sources complete, one after another.
- concatWith(Completable) - Method in class hu.akarnokd.completable.Completable
-
Concatenates this Completable with another Completable.
- create(Completable.CompletableOnSubscribe) - Static method in class hu.akarnokd.completable.Completable
-
Constructs a Completable instance by wrapping the given onSubscribe callback.
- defer(Func0<? extends Completable>) - Static method in class hu.akarnokd.completable.Completable
-
Defers the subscription to a Completable instance returned by a supplier.
- delay(long, TimeUnit) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable which delays the emission of the completion event by the given time.
- delay(long, TimeUnit, Scheduler) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable which delays the emission of the completion event by the given time while
running on the specified scheduler.
- delay(long, TimeUnit, Scheduler, boolean) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable which delays the emission of the completion event, and optionally the error as well, by the given time while
running on the specified scheduler.
- doOnComplete(Action0) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable which calls the given onComplete callback if this Completable completes.
- doOnError(Action1<? super Throwable>) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable which calls the given onError callback if this Completable emits an error.
- doOnLifecycle(Action1<? super Subscription>, Action1<? super Throwable>, Action0, Action0, Action0) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that calls the various callbacks on the specific
lifecycle events.
- doOnSubscribe(Action1<? super Subscription>) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that calls the given onSubscribe callback with the disposable
that child subscribers receive on subscription.
- doOnTerminate(Action0) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that calls the given onTerminate callback just before this Completable
completes normally or with an exception
- doOnUnsubscribe(Action0) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable which calls the giveon onUnsubscribe callback if the child subscriber cancels
the subscription.
- merge(Completable...) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that subscribes to all sources at once and
completes only when all source Completables complete or one of them emits an error.
- merge(Iterable<? extends Completable>) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that subscribes to all sources at once and
completes only when all source Completables complete or one of them emits an error.
- merge(Observable<? extends Completable>) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that subscribes to all sources at once and
completes only when all source Completables complete or one of them emits an error.
- merge(Observable<? extends Completable>, int) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that keeps subscriptions to a limited number of sources at once and
completes only when all source Completables complete or one of them emits an error.
- merge0(Observable<? extends Completable>, int, boolean) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that keeps subscriptions to a limited number of sources at once and
completes only when all source Completables terminate in one way or another, combining any exceptions
thrown by either the sources Observable or the inner Completable instances.
- mergeDelayError(Completable...) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable that subscribes to all Completables in the source array and delays
any error emitted by either the sources observable or any of the inner Completables until all of
them terminate in a way or another.
- mergeDelayError(Iterable<? extends Completable>) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable that subscribes to all Completables in the source sequence and delays
any error emitted by either the sources observable or any of the inner Completables until all of
them terminate in a way or another.
- mergeDelayError(Observable<? extends Completable>) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable that subscribes to all Completables in the source sequence and delays
any error emitted by either the sources observable or any of the inner Completables until all of
them terminate in a way or another.
- mergeDelayError(Observable<? extends Completable>, int) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable that subscribes to a limited number of inner Completables at once in
the source sequence and delays any error emitted by either the sources
observable or any of the inner Completables until all of
them terminate in a way or another.
- mergeWith(Completable) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable which subscribes to this and the other Completable and completes
when both of them complete or one emits an error.
- timeout(long, TimeUnit) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable that runs this Completable and emits a TimeoutException in case
this Completable doesn't complete within the given time.
- timeout(long, TimeUnit, Completable) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable that runs this Completable and switches to the other Completable
in case this Completable doesn't complete within the given time.
- timeout(long, TimeUnit, Scheduler) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable that runs this Completable and emits a TimeoutException in case
this Completable doesn't complete within the given time while "waiting" on the specified
Scheduler.
- timeout(long, TimeUnit, Scheduler, Completable) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable that runs this Completable and switches to the other Completable
in case this Completable doesn't complete within the given time while "waiting" on
the specified scheduler.
- timeout0(long, TimeUnit, Scheduler, Completable) - Method in class hu.akarnokd.completable.Completable
-
Returns a Completable that runs this Completable and optionally switches to the other Completable
in case this Completable doesn't complete within the given time while "waiting" on
the specified scheduler.
- timer(long, TimeUnit) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that fires its onComplete event after the given delay ellapsed.
- timer(long, TimeUnit, Scheduler) - Static method in class hu.akarnokd.completable.Completable
-
Returns a Completable instance that fires its onComplete event after the given delay ellapsed
by using the supplied scheduler.
- to(Func1<? super Completable, U>) - Method in class hu.akarnokd.completable.Completable
-
Allows fluent conversion to another type via a function callback.
- toObservable() - Method in class hu.akarnokd.completable.Completable
-
Returns an Observable which when subscribed to subscribes to this Completable and
relays the terminal events to the subscriber.
- toSingle(Func0<? extends T>) - Method in class hu.akarnokd.completable.Completable
-
Convers this Completable into a Single which when this Completable completes normally,
calls the given supplier and emits its returned value through onSuccess.
- toSingleDefault(T) - Method in class hu.akarnokd.completable.Completable
-
Convers this Completable into a Single which when this Completable completes normally,
emits the given value through onSuccess.