Enum RabbitMqExchangeType
The type of AMQP exchange. Maps to RabbitMQ exchange types.
public enum RabbitMqExchangeType
Fields
Direct = 1Direct exchange with exact routing key matching.
Fanout = 2Fanout exchange that broadcasts to all bound queues.
Headers = 3Headers exchange that routes based on message headers.
Topic = 0Topic exchange with pattern-based routing (e.g. "order.*").