famoseagle / carrot
- Source
- Commits
- Network (7)
- Issues (1)
- Downloads (7)
- Wiki (1)
- Graphs
-
Tag:
v0.6.0
carrot /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri Mar 20 17:23:39 -0700 2009 | |
| |
LICENSE | Wed Apr 08 16:01:05 -0700 2009 | |
| |
README.markdown | Fri Apr 10 12:18:32 -0700 2009 | |
| |
Rakefile | Wed Apr 08 16:01:05 -0700 2009 | |
| |
VERSION.yml | ||
| |
carrot.gemspec | ||
| |
lib/ | ||
| |
protocol/ | Fri Mar 20 17:25:14 -0700 2009 | |
| |
test/ | Sun Mar 29 09:21:42 -0700 2009 |
README.markdown
Carrot
A synchronous amqp client. Based on Aman's amqp client:
http://github.com/tmm1/amqp/tree/master
Example
q = Carrot.queue('name', :durable => true, :host => 'q1.rabbitmq.com')
100.times do
q.publish('foo')
end
pp :count, q.message_count
while msg = q.pop(:ack => true)
puts msg
q.ack
end
Carrot.stop
LICENSE
Copyright (c) 2009 Amos Elliston, Geni.com; Published under The MIT License, see License

