Queue#

A Queue represents a message queue, topic, or event stream. It is a specialized type of Container used for asynchronous communication.

Syntax#

queue ID "Label" {
    description "Optional description"
    technology "Technology"
}

Example#

queue Events "Event Stream" {
    technology "Kafka"
    description "Handles domain events"
}