Method: Peatio::MQ::Client#exchange

Defined in:
lib/peatio/mq/client.rb

#exchange(name, type = "topic") ⇒ Object



30
31
32
# File 'lib/peatio/mq/client.rb', line 30

def exchange(name, type="topic")
  @exchanges[name] ||= @channel.exchange(name, type: type)
end