abstract fun thenScheduleBlockingRun(vertx: Vertx, runnable: Runnable): AsyncCompletion
(source)
Returns a new completion that, when this completion completes normally, completes after the given blocking action is executed on the vertx context.
runnable
- The action to execute on the vertx context before completing the returned completion.
Return
A completion.
abstract fun thenScheduleBlockingRun(executor: WorkerExecutor, runnable: Runnable): AsyncCompletion
(source)
Returns a new completion that, when this completion completes normally, completes after the given blocking action is executed on the vertx executor.
executor
- The vertx executor.
runnable
- The action to execute on the vertx context before completing the returned completion.
Return
A completion.