CoroutineHandlerLaunchMode

Entries

Link copied to clipboard

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.

Link copied to clipboard

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

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

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.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.