Uses of Record Class
org.bsc.async.AsyncGenerator.Data
Packages that use AsyncGenerator.Data
-
Uses of AsyncGenerator.Data in org.bsc.async
Methods in org.bsc.async with type parameters of type AsyncGenerator.DataModifier and TypeMethodDescriptionstatic <E,Q extends BlockingQueue<AsyncGenerator.Data<E>>>
AsyncGenerator<E>Creates an AsyncGenerator from the provided blocking queue and consumer.static <E,Q extends BlockingQueue<AsyncGenerator.Data<E>>>
AsyncGenerator<E>Creates an AsyncGenerator from the provided queue, executor, and consumer.Methods in org.bsc.async that return AsyncGenerator.DataModifier and TypeMethodDescriptionstatic <E> AsyncGenerator.Data<E>AsyncGenerator.Data.composeWith(AsyncGenerator<E> generator, AsyncGenerator.EmbedCompletionHandler onCompletion) static <E> AsyncGenerator.Data<E>AsyncGenerator.Data.done()static <E> AsyncGenerator.Data<E>static <E> AsyncGenerator.Data<E>AsyncGenerator.next()Retrieves the next asynchronous element.AsyncGenerator.WithEmbed.next()AsyncGenerator.WithResult.next()AsyncGeneratorQueue.Generator.next()Retrieves the next element from the queue asynchronously.static <E> AsyncGenerator.Data<E>AsyncGenerator.Data.of(E data) static <E> AsyncGenerator.Data<E>AsyncGenerator.Data.of(CompletableFuture<E> future) Methods in org.bsc.async that return types with arguments of type AsyncGenerator.DataModifier and TypeMethodDescriptionAsyncGeneratorQueue.Generator.queue()AsyncGenerator.WithEmbed.resultValues()Constructor parameters in org.bsc.async with type arguments of type AsyncGenerator.DataModifierConstructorDescriptionGenerator(BlockingQueue<AsyncGenerator.Data<E>> queue) Constructs a Generator with the specified queue. -
Uses of AsyncGenerator.Data in org.bsc.async.internal.reactive
Methods in org.bsc.async.internal.reactive that return AsyncGenerator.DataModifier and TypeMethodDescriptionGeneratorSubscriber.next()Returns the nextData<T>object from this iteration.Constructor parameters in org.bsc.async.internal.reactive with type arguments of type AsyncGenerator.DataModifierConstructorDescriptionGeneratorSubscriber(P publisher, BlockingQueue<AsyncGenerator.Data<T>> queue) Constructs a new instance ofGeneratorSubscriber.GeneratorSubscriber(P publisher, Supplier<Object> mapResult, BlockingQueue<AsyncGenerator.Data<T>> queue) Constructs a new instance ofGeneratorSubscriber.