Package at.aimon.session.web.spi
Enum Class ConversationSignal.SignalKind
java.lang.Object
java.lang.Enum<ConversationSignal.SignalKind>
at.aimon.session.web.spi.ConversationSignal.SignalKind
- All Implemented Interfaces:
Serializable,Comparable<ConversationSignal.SignalKind>,Constable
- Enclosing class:
ConversationSignal
Distinguishes the four cross-node signal flavors per design ยง5.4.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionStreamingAgentExecutionEventenvelope for cross-nodeevents()fan-out.Cache eviction request; receiving nodes drop their local cache entry.User-requested interrupt; trips the active turn on the holder node.A newInboundMessagewas delivered to the inbox; holder may collect. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ConversationSignal.SignalKind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INTERRUPT
User-requested interrupt; trips the active turn on the holder node. -
EVICT
Cache eviction request; receiving nodes drop their local cache entry. -
MESSAGE_ENQUEUED
A newInboundMessagewas delivered to the inbox; holder may collect. -
EVENT
StreamingAgentExecutionEventenvelope for cross-nodeevents()fan-out.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-