ListIndexesFlow

interface ListIndexesFlow<out TResult : Any> : Flow<TResult>

Flow for ListIndexes.

Since

3.0

Parameters

The type of the result.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
abstract fun batchSize(batchSize: Int): ListIndexesFlow<TResult>

Sets the number of documents to return per batch.

Link copied to clipboard
abstract suspend fun collect(collector: FlowCollector<TResult>)
Link copied to clipboard
abstract suspend fun firstOrNull(): TResult?

Helper to return first result.

Link copied to clipboard
abstract fun maxTime(maxTime: Long, timeUnit: TimeUnit): ListIndexesFlow<TResult>

Sets the maximum execution time on the server for this operation.