%dw 2.0
output application/json
fun myFunction() = dw::Runtime::wait("My result",100)
---
dw::util::Timer::duration(() -> myFunction())
duration
duration<T>(valueToMeasure: () -> T): DurationMeasurement<T>
Executes the input function and returns an object with execution time in milliseconds and result of that function.
Example
This example passes a wait
function (defined in the header), which returns
the execution time and result of that function in a DurationMeasurement
object.