class EventMachine::HotTub::Sessions

Public Class Methods

new(opts={}) click to toggle source
Calls superclass method
# File lib/em/hot_tub/sessions.rb, line 8
def initialize(opts={})
  super opts
  @mutex = EM::Synchrony::Thread::Mutex.new
  @kill_reaper = false
  EM.add_shutdown_hook {shutdown!}
end