1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actioncable/lib/action_cable/connection/faye_event_loop.rb
Xavier Noria b678eb57e9 applies new string literal convention in actioncable/lib
The current code base is not uniform. After some discussion,
we have chosen to go with double quotes by default.
2016-08-06 19:13:46 +02:00

44 lines
978 B
Ruby

require "thread"
require "eventmachine"
EventMachine.epoll if EventMachine.epoll?
EventMachine.kqueue if EventMachine.kqueue?
module ActionCable
module Connection
class FayeEventLoop
@@mutex = Mutex.new
def timer(interval, &block)
ensure_reactor_running
EMTimer.new(::EM::PeriodicTimer.new(interval, &block))
end
def post(task = nil, &block)
task ||= block
ensure_reactor_running
::EM.next_tick(&task)
end
private
def ensure_reactor_running
return if EventMachine.reactor_running?
@@mutex.synchronize do
Thread.new { EventMachine.run } unless EventMachine.reactor_running?
Thread.pass until EventMachine.reactor_running?
end
end
class EMTimer
def initialize(inner)
@inner = inner
end
def shutdown
@inner.cancel
end
end
end
end
end