SequenceCollectable

一个序列化的 Collectable 实现。实现 Iterable,可转化为为一个 Sequence 使用。

See also

Functions

Link copied to clipboard
open override fun asFlow(): Flow<T>

转化为 Flow

Link copied to clipboard
abstract fun asSequence(): Sequence<T>

将自身中的元素(或收集器)转化为 Sequence

Link copied to clipboard
open operator override fun iterator(): Iterator<T>

Returns an iterator over the elements in this collection.

Inherited functions

Link copied to clipboard
@JvmName(name = "valueOf")
fun <T> Iterable<T>.asCollectable(): IterableCollectable<T>

Iterable 转换为 IterableCollectable 的函数.

Link copied to clipboard
fun <T : Any> Collectable<T>.asFlux(): Flux<T>

Collectable 转化为 Flux。 需要环境中存在 kotlinx-coroutines-reactor 依赖。

Link copied to clipboard

Converts an SequenceCollectable to a Stream.

fun <T> Collectable<T>.asStream(produceScope: CoroutineScope? = null): Stream<T>

将一个 Collectable 转化为 Stream。 如果是 IterableCollectableSequenceCollectable, 则会使用它们的 asSequence 进行转化, 否则会使用 Collectable 中合适的方法进行适当的阻塞转化

Link copied to clipboard

将一个 Collectable 转化为可以提供同步迭代能力的迭代器 SynchronouslyIterateCollectable

Link copied to clipboard
open suspend override fun collect(collector: Action<T>)

收集当前元素。等同于 forEach,无实际的挂起行为。

Link copied to clipboard
fun <T, R> Collectable<T>.collect(collector: Collector<T, *, R>): R

使用 Collector 阻塞地收集 Collectable 中的元素。

Link copied to clipboard
open override fun collectAsync(scope: CoroutineScope, collector: Action<T>): Async<Unit>

异步收集其中的元素。

Link copied to clipboard
fun <T, R> Collectable<T>.collectAsync(scope: CoroutineScope? = null, collector: Collector<T, *, R>): CompletableFuture<R>

使用 Collector 异步地收集 Collectable 中的元素。 如果 scopenull,则会视情况使用 GlobalScope 或使用 CompletableFuture.supplyAsync

Link copied to clipboard
abstract fun forEach(action: Action<T>)

普通地迭代当前收集器中的元素。

Link copied to clipboard
abstract fun toList(): List<T>

转化或收集为一个 List

Link copied to clipboard
fun <T> Collectable<T>.toList(): List<T>

Collectable 阻塞地收集为 List。 会根据类型适当地优化与避免阻塞挂起操作。

Link copied to clipboard

Collectable 异步地收集为 List。 如果 scopenull,则会视情况使用 GlobalScope 或使用 CompletableFuture.supplyAsync

Link copied to clipboard
open fun <R> transform(transformer: SuspendReserve.Transformer<Flow<T>, R>): R

使用 SuspendReserve.Transformerflow 的值进行转化处理。 更多说明参考全量参数的重载函数。

open fun <R> transform(scope: CoroutineScope, context: CoroutineContext, transformer: SuspendReserve.Transformer<Flow<T>, R>): R

使用 SuspendReserve.Transformerflow 的值进行转化处理。 例如在 JVM 中,可以使用 SuspendReserves.flux() 转化为 reactor.core.publisher.Flux 或使用 SuspendReserves.list() 转化为 List

Link copied to clipboard
fun <T, R> Collectable<T>.transform(scope: CoroutineScope = GlobalScope, transformer: SuspendReserve.Transformer<Flow<T>, R>): R

使用 SuspendReserve.TransformerCollectable.asFlow 的结果进行转化, 例如可以使用 SuspendReserves.flux() 转化为 FluxSuspendReserves.list() 转化为 List。 注意:部分转化器可能会要求运行时存在一些依赖,请注意参考它们的注释与说明。