lib/celluloid/zmq/mailbox.rb in celluloid-zmq-0.7.0 vs lib/celluloid/zmq/mailbox.rb in celluloid-zmq-0.8.0
- old
+ new
@@ -4,11 +4,10 @@
class Mailbox < Celluloid::IO::Mailbox
def initialize
# More APIs and less monkeypatching would be useful here
@messages = []
@lock = Mutex.new
- @waker = Waker.new
- @reactor = Reactor.new(@waker)
+ @reactor = Reactor.new
end
end
end
end