JoinSemanticType

enum JoinSemanticType : Enum


Ways of coordinating the execution of multiple concurrent operations.

Summary

Enum Values

JsUnspecified

Unspecified.

JsWhenAllFinished

Once all the nodes within the execution paths in a ParallelFlow node finish executing, the node that follows this ParallelFlow node is executed.

Public functions

JoinSemanticType
valueOf(value: String)

Returns the enum constant of this type with the specified name.

Array<JoinSemanticType>

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

Enum Values

JsUnspecified

val JoinSemanticType.JsUnspecifiedJoinSemanticType

Unspecified.

JsWhenAllFinished

val JoinSemanticType.JsWhenAllFinishedJoinSemanticType

Once all the nodes within the execution paths in a ParallelFlow node finish executing, the node that follows this ParallelFlow node is executed.

Public functions

valueOf

fun valueOf(value: String): JoinSemanticType

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

Throws
kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

values

fun values(): Array<JoinSemanticType>

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

This method may be used to iterate over the constants.