Table of Contents

Enum RabbitMqExchangeType

Namespace
Ratatoskr.RabbitMq.Config
Assembly
Ratatoskr.RabbitMq.dll

The type of AMQP exchange. Maps to RabbitMQ exchange types.

public enum RabbitMqExchangeType

Fields

Direct = 1

Direct exchange with exact routing key matching.

Fanout = 2

Fanout exchange that broadcasts to all bound queues.

Headers = 3

Headers exchange that routes based on message headers.

Topic = 0

Topic exchange with pattern-based routing (e.g. "order.*").