A B C D E F G H I J K L M N O P R S T U Z 

A

AsyncEmitter<T> - Interface in hu.akarnokd.asyncenum
 
AsyncEnumerable<T> - Interface in hu.akarnokd.asyncenum
Represents an possibly asynchronous, cold-deferred, source of zero or more items optionally followed by a Throwable.
AsyncEnumerator<T> - Interface in hu.akarnokd.asyncenum
 
AsyncRepeatWhen<T,S> - Class in hu.akarnokd.asyncenum
 
AsyncRepeatWhen(AsyncEnumerable<T>, Supplier<S>, Function<? super S, ? extends CompletionStage<Boolean>>) - Constructor for class hu.akarnokd.asyncenum.AsyncRepeatWhen
 
AsyncRetryWhen<T,S> - Class in hu.akarnokd.asyncenum
 
AsyncRetryWhen(AsyncEnumerable<T>, Supplier<S>, BiFunction<? super S, ? super Throwable, ? extends CompletionStage<Boolean>>) - Constructor for class hu.akarnokd.asyncenum.AsyncRetryWhen
 

B

blockingFirst() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
blockingFirstOptional() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
blockingIterable() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
blockingLast() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
blockingLastOptional() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
blockingStream() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 

C

cache() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
cancel() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerator
Instructs the AsyncEnumerator to cancel any outstanding async activity and release resources associated with it.
CANCELLED - Static variable in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
characters(CharSequence) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
collect(Supplier<C>, BiConsumer<C, T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
collect(Collector<T, A, R>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
compose(Function<? super AsyncEnumerable<T>, ? extends AsyncEnumerable<R>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
concatArray(AsyncEnumerable<T>...) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
concatMap(Function<? super T, ? extends AsyncEnumerable<? extends R>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
concatWith(AsyncEnumerable<T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
create(Consumer<AsyncEmitter<T>>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
current() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerator
Returns the current item when the CompletionStage returned by AsyncEnumerator.moveNext() completes with true.

D

defer(Supplier<? extends AsyncEnumerable<? extends T>>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
distinct() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
distinct(Function<? super T, ? extends K>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
distinct(Function<? super T, ? extends K>, Supplier<? extends Collection<? super K>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
distinctUntilChanged() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
distinctUntilChanged(Function<? super T, ? extends K>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
distinctUntilChanged(Function<? super T, ? extends K>, BiPredicate<? super K, ? super K>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
doFinally(Runnable) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
doOnCancel(Runnable) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
doOnComplete(Runnable) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
doOnError(Consumer<? super Throwable>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
doOnNext(Consumer<? super T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 

E

emissionPending() - Method in interface hu.akarnokd.asyncenum.AsyncEmitter
 
empty() - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
enumerator() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
Returns an AsyncEnumerator that can be iterated over to receive the next item, the end-of-sequence indicator or a Throwable.
enumerator() - Method in class hu.akarnokd.asyncenum.AsyncRepeatWhen
 
enumerator() - Method in class hu.akarnokd.asyncenum.AsyncRetryWhen
 
error(Throwable) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
error(Throwable) - Method in interface hu.akarnokd.asyncenum.SyncEmitter
 

F

FALSE - Static variable in interface hu.akarnokd.asyncenum.AsyncEnumerable
Constant and already completed CompletionStage signalling false.
filter(Predicate<? super T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
first() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
flatMap(Function<? super T, ? extends AsyncEnumerable<? extends R>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
forEach(Consumer<? super T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
fromArray(T...) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
fromCallable(Callable<? extends T>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
fromCompletionStage(CompletionStage<T>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
fromFlowPublisher(Flow.Publisher<T>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
fromIterable(Iterable<T>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
fromStream(Stream<T>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 

G

generate(Consumer<SyncEmitter<T>>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
generate(Supplier<S>, BiFunction<S, SyncEmitter<T>, S>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
generate(Supplier<S>, BiFunction<S, SyncEmitter<T>, S>, Consumer<? super S>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
groupBy(Function<? super T, ? extends K>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
groupBy(Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
GroupedAsyncEnumerable<T,K> - Interface in hu.akarnokd.asyncenum
 

H

hu.akarnokd.asyncenum - package hu.akarnokd.asyncenum
 

I

ignoreElements() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
interval(long, long, TimeUnit, ScheduledExecutorService) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
interval(long, TimeUnit, ScheduledExecutorService) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
isCancelled() - Method in interface hu.akarnokd.asyncenum.AsyncEmitter
 

J

just(T) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 

K

key() - Method in interface hu.akarnokd.asyncenum.GroupedAsyncEnumerable
 

L

last() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 

M

map(Function<? super T, ? extends R>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
max(Comparator<? super T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
mergeArray(AsyncEnumerable<? extends T>...) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
mergeWith(AsyncEnumerable<T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
min(Comparator<? super T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
moveNext() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerator
Asks the AsyncEnumerator to fetch the next item and notify its availability by completing the returned CompletionStage with: true if there is an item is ready to be read via AsyncEnumerator.current(); false if there won't be any more items; or containing the Throwable indicating an error.

N

never() - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
next(T) - Method in interface hu.akarnokd.asyncenum.SyncEmitter
 

O

observeOn(Executor) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
onErrorResume(Function<? super Throwable, ? extends AsyncEnumerable<? extends T>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 

P

publish(Function<? super AsyncEnumerable<T>, ? extends AsyncEnumerable<R>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 

R

range(int, int) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
reduce(BiFunction<T, T, T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
reduce(Supplier<R>, BiFunction<R, T, R>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
repeat(long) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
repeat(long, BooleanSupplier) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
repeat(BooleanSupplier) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
repeatCallable(Callable<? extends T>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
repeatItem(T) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
repeatWhen(Supplier<? extends CompletionStage<Boolean>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
repeatWhen(Supplier<S>, Function<? super S, ? extends CompletionStage<Boolean>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
retry(long) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
retry(long, Predicate<? super Throwable>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
retry(Predicate<? super Throwable>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
retryWhen(Function<? super Throwable, ? extends CompletionStage<Boolean>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
retryWhen(Supplier<S>, BiFunction<? super S, ? super Throwable, ? extends CompletionStage<Boolean>>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 

S

setResource(AutoCloseable) - Method in interface hu.akarnokd.asyncenum.AsyncEmitter
 
skip(long) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
skipLast(int) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
skipWhile(Predicate<? super T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
startWith(AsyncEnumerable<T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
stop() - Method in interface hu.akarnokd.asyncenum.SyncEmitter
 
subscribeOn(Executor) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
sumInt(Function<? super T, ? extends Number>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
sumLong(Function<? super T, ? extends Number>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
switchIfEmpty(AsyncEnumerable<T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
SyncEmitter<T> - Interface in hu.akarnokd.asyncenum
 

T

take(long) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
takeLast(int) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
takeUntil(AsyncEnumerable<U>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
takeUntil(Predicate<? super T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
takeWhile(Predicate<? super T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
timeout(long, TimeUnit, ScheduledExecutorService) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
timeout(long, TimeUnit, ScheduledExecutorService, AsyncEnumerable<T>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
timer(long, TimeUnit, ScheduledExecutorService) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
to(Function<? super AsyncEnumerable<T>, R>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
toFlowPublisher() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
toList() - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
TRUE - Static variable in interface hu.akarnokd.asyncenum.AsyncEnumerable
Constant and already completed CompletionStage signalling true.

U

using(Supplier<U>, Function<? super U, ? extends AsyncEnumerable<T>>, Consumer<? super U>) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 

Z

zipArray(Function<? super Object[], ? extends R>, AsyncEnumerable<? extends T>...) - Static method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
zipWith(AsyncEnumerable<U>, BiFunction<? super T, ? super U, ? extends R>) - Method in interface hu.akarnokd.asyncenum.AsyncEnumerable
 
A B C D E F G H I J K L M N O P R S T U Z 
Skip navigation links