Priority queue
Not all messages are equally urgent. A rush order or a critical alert should not sit behind a million routine records. A priority flag routes the urgent ones onto a faster, separate path so they are handled first.
Mark priority as a value promoted on the message type, then use ordinary content-based routing to send high-priority messages to a dedicated send port, lightly loaded, perhaps less throttled, while normal traffic flows through the bulk path. The urgent lane stays short because only a little goes down it.
Separate lanes are simpler and more transparent than a single re-sorting queue, and they fit the bus model exactly, it is just routing on a flag.
In Art2link this is content-based routing on a priority flag. Promote Priority on the Order type; an expedited send port subscribes only to the urgent traffic while the normal port takes the rest:
{{Message.MessageType}} == "Order" && {{Promoted.Order.Priority}} == "high"The normal port’s predicate excludes high so nothing is delivered twice.