# File lib_core/rucy/messenger.rb, line 16 def initialize(size=16) @size = size @sock_queue = Array.new @cmd_queue = Array.new @lock = Mutex.new @push_cond = ConditionVariable.new @pop_cond = ConditionVariable.new end