NamedMessage
interface NamedMessage<SOURCE : NamedMessage<SOURCE, T>, out T> : NamedBoundedContextMessage<SOURCE, T> , Named
A message that has both a name and is associated with a bounded context.
This interface combines the capabilities of NamedBoundedContextMessage and Named, providing messages with identity within a specific bounded context. The name typically represents the message type or command/event name, while the bounded context provides the domain scope.
Type Parameters
SOURCE
The self-referential type for fluent method chaining
T
The type of the message body payload
See also
for naming capabilities
for bounded context association