Method: Narou::WebWorker#initialize

Defined in:
lib/web/web_worker.rb

#initializeWebWorker



22
23
24
25
26
27
28
29
30
# File 'lib/web/web_worker.rb', line 22

def initialize
  @queue = Queue.new
  @size = 0
  @mutex = Mutex.new
  @worker_thread = nil
  @push_server = Narou::PushServer.instance
  @cancel_signal = false
  @thread_of_block_executing = nil
end