Enum ChannelType
public enum ChannelType
Fields
CommandConsume = 2We own this channel and consume commands from it. We declare the exchange and our queue.
CommandPublish = 1We expect this channel to exist (owned by another) and we send commands to it. We validate it.
EventConsume = 3We expect this channel to exist (owned by another) and consume events from it. We declare our queue and bind it.
EventPublish = 0We own this channel and publish events to it. We declare the exchange/topic.