js / stomp forked from zmalltalker/stomp
- Source
- Commits
- Network (11)
- Issues (1)
- Downloads (1)
- Wiki (1)
- Graphs
-
Tree:
b73073c
stomp /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu May 08 18:20:11 -0700 2008 | |
| |
AUTHORS | Fri Feb 27 01:39:49 -0800 2009 | |
| |
CHANGELOG | Fri Feb 27 01:39:49 -0800 2009 | |
| |
LICENSE | Mon Jan 30 10:49:21 -0800 2006 | |
| |
README.rdoc | Fri Feb 27 01:39:49 -0800 2009 | |
| |
Rakefile | Sat May 10 09:48:43 -0700 2008 | |
| |
bin/ | Thu May 08 22:43:08 -0700 2008 | |
| |
lib/ | Fri Feb 13 02:25:25 -0800 2009 | |
| |
spec/ | Sat May 10 09:48:43 -0700 2008 | |
| |
stomp.gemspec | Mon Feb 16 00:04:39 -0800 2009 | |
| |
test/ | Sat May 10 09:48:43 -0700 2008 |
README.rdoc
README
Overview
An implementation of the Stomp protocol (stomp.codehaus.org/Protocol) for Ruby.
Example Usage
client = Stomp::Client.new("test", "user", "localhost", 61613)
client.send("/my/queue", "hello world!")
client.subscribe("/my/queue") do |msg|
p msg
end
Contact info
Up until March 2009 the project was maintained and primarily developed by Brian McCallister.
The project is now maintained by Johan Sørensen <johan@johansorensen.com>
Source Code
http://gitorious.org/projects/stomp/ http://github.com/js/stomp/
Project urls
Project Home :
http://gitorious.org/projects/stomp/ http://rubyforge.org/projects/stomp/
Stomp Protocol Info :
http://stomp.codehaus.org/Protocol
