class RabbitMQSpec::Entity::Exchange

Represents an exchange in the AMPQ broker @attr name [String] @attr description [String] @attr queues [Array<RabbitMQSpec::Entity::Queue>] @attr options [Hash] Configuration options

Attributes

description[RW]
name[RW]
options[RW]
queues[RW]

Public Class Methods

new() click to toggle source
# File lib/rabbitmq-spec/entity/exchange.rb, line 13
def initialize
  @queues = []
  @options = {}
end