Guest User

Untitled

a guest
Apr 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. ###############
  2. # Wrong
  3. ###############
  4.  
  5. # starling specific
  6. Starling.new('127.0.0.1:22122').set('my_queue', 12345)
  7.  
  8.  
  9. ###############
  10. # Right
  11. ###############
  12.  
  13. # create agnostic object
  14. BRQ = Starling.new('127.0.0.1:22122')
  15.  
  16. # add to queue
  17. BRQ.set('my_queue', 12345)
Add Comment
Please, Sign In to add comment