famoseagle-carrot 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/lib/amqp/queue.rb +2 -1
- metadata +1 -1
data/VERSION.yml
CHANGED
data/lib/amqp/queue.rb
CHANGED
@@ -10,13 +10,14 @@ module AMQP
|
|
10
10
|
server.send_frame(
|
11
11
|
Protocol::Queue::Declare.new({ :queue => name, :nowait => true }.merge(opts))
|
12
12
|
)
|
13
|
+
nil
|
13
14
|
end
|
14
15
|
|
15
16
|
def delete(opts = {})
|
16
17
|
server.send_frame(
|
17
18
|
Protocol::Queue::Delete.new({ :queue => name, :nowait => true }.merge(opts))
|
18
19
|
)
|
19
|
-
|
20
|
+
nil
|
20
21
|
end
|
21
22
|
|
22
23
|
def pop(opts = {})
|