Guest User

Untitled

a guest
Jan 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. require 'bunny'
  2. b_con = Bunny.new(host: 'localhost', port: 5672, logging: true)
  3. b_con.start
  4. b_q = b_con.queue('events')
  5. b_ex = b_con.exchange('events', type: :topic)
  6. b_ex.publish('message!!', key: 'usermanager.user.login')
Add Comment
Please, Sign In to add comment