toListAsync
fun <T> Collectable<T>.toListAsync(scope: CoroutineScope? = null): CompletableFuture<List<T>>(source)
将 Collectable 异步地收集为 List。 如果 scope 为 null
,则会视情况使用 GlobalScope 或使用 CompletableFuture.supplyAsync。
注意:如果没有指定 scope 且在可能会使用 GlobalScope 的情况下, 你应当了解 GlobalScope 的特性与注意事项。