SagaTypeValue

Marker interface for enums that represent saga type identifiers. Any enum used as a saga type or step name must implement this interface.

Example:

enum class SagaTypes(override val value: String) : SagaTypeValue {
USER_REGISTRATION("UserRegistration")
}

Properties

Link copied to clipboard
abstract val value: String