fabx / stomp-irb

Interactive Ruby shell for STOMP

Home Page:http://www.devco.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What is it?

An Interactive Ruby shell for STOMP

How to use it?

Start it supplying user, password, stomp host and port - see the --help information for details.

$ stomp-irb -s stomp --port 6163
Interactive Ruby shell for STOMP

Type 'help' for usage instructions

>> subscribe :topic, "foo.bar"
Current Subscriptions:
    /topic/foo.bar

=> nil
>> topic "foo.bar", "hello"
=> nil
<<stomp>> hello

>> recv_callback {|f| puts "Received: #{f.body} from #{f.headers["destination"]}"}
>> topic "foo.bar", "hello"
=> nil
<<stomp>> hello
Received: hello from /topic/foo.bar

>> verbose
=> true
>> topic "foo.bar", "hello world"
=> nil
<<20:02:07:/topic/foo.bar>> hello world

Changelog?

2011/01/20 - Add persistence support to queue sending

License?

Apache 2.0

Contact?

R.I.Pienaar <rip@devco.net> / @ripienaar / http://www.devco.net

About

Interactive Ruby shell for STOMP

http://www.devco.net/