Enum ExchangeType
Represents the type of an exchange in RabbitMQ.
Namespace: Chapar.Core.Attributes
Assembly: Chapar.Core.dll
Syntax
public enum ExchangeType
Fields
| Name | Description |
|---|---|
| Direct | Routes messages to a specific queue based on a routing key. |
| Fanout | Broadcasts messages to all bound queues. |
| Headers | Routes messages based on header values instead of routing keys. |
| Topic | Routes messages based on a pattern matching the routing key. |