BlockingStatistic

fun interface BlockingStatistic<in T, out R> : Statistic<T, R> (source)

A statistic that is computed in a synchronous blocking mode

Inheritors

Functions

Link copied to clipboard
open suspend override fun evaluate(data: Buffer<T>): R
Link copied to clipboard
abstract fun evaluateBlocking(data: Buffer<T>): R
Link copied to clipboard
operator fun <T, R> BlockingStatistic<T, R>.invoke(data: Buffer<T>): R
suspend operator fun <T, R> Statistic<T, R>.invoke(data: Buffer<T>): R