Skip to content

stompgem/stomp-irb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%