TimedResult

data class TimedResult<T>(val time: Double, val result: T)(source)

A result with a duration timestamp.

Constructors

Link copied to clipboard
constructor(time: Double, result: T)

Properties

Link copied to clipboard
val result: T

The result of the request.

Link copied to clipboard

The duration of the request in seconds.