suspend fun <T> Vertx.executeBlockingAwait(blockingCodeHandler: (Future<T>) -> Unit, ordered: Boolean): T?
Suspending version of method io.vertx.core.Vertx.executeBlocking
blockingCodeHandler
- handler representing the blocking code to run
ordered
- if true then if executeBlocking is called several times on the same context, the executions for that context will be executed serially, not in parallel. if false then they will be no ordering guarantees
Return
NOTE: This function has been automatically generated from io.vertx.core.Vertx using Vert.x codegen.
suspend fun <T> Vertx.executeBlockingAwait(blockingCodeHandler: (Future<T>) -> Unit): T?
Suspending version of method io.vertx.core.Vertx.executeBlocking
Return
NOTE: This function has been automatically generated from io.vertx.core.Vertx using Vert.x codegen.