CoroutineHandlerLaunchMode
See also
Entries
In this mode, the coroutine is launched in a CoroutineScope probably with a CoroutineDispatcher (such as a CoroutineVerticle) with the arguments EmptyCoroutineContext and CoroutineStart.UNDISPATCHED. After calling a suspending function that doesn't resume on the Vert.x event loop by default (especially and mainly non-Vert.x functions, such as delay), the coroutine is redispatched to the Vert.x event loop.
In this mode, the coroutine is launched with the argument Dispatchers.Unconfined. After calling a suspending function that doesn't resume on the Vert.x event loop by default, the coroutine is not redispatched to the Vert.x event loop.
Properties
Functions
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Returns an array containing the constants of this enum type, in the order they're declared.