Class: ActionCable::Connection::StreamEventLoop
- Inherits:
-
Object
- Object
- ActionCable::Connection::StreamEventLoop
- Defined in:
- lib/action_cable/connection/stream_event_loop.rb
Instance Method Summary collapse
- #attach(io, stream) ⇒ Object
- #detach(io, stream) ⇒ Object
-
#initialize ⇒ StreamEventLoop
constructor
A new instance of StreamEventLoop.
- #post(task = nil, &block) ⇒ Object
- #stop ⇒ Object
- #timer(interval, &block) ⇒ Object
- #writes_pending(io) ⇒ Object
Constructor Details
#initialize ⇒ StreamEventLoop
Returns a new instance of StreamEventLoop.
8 9 10 11 12 13 14 15 |
# File 'lib/action_cable/connection/stream_event_loop.rb', line 8 def initialize @nio = @executor = @thread = nil @map = {} @stopping = false @todo = Queue.new @spawn_mutex = Mutex.new end |
Instance Method Details
#attach(io, stream) ⇒ Object
28 29 30 31 32 33 34 |
# File 'lib/action_cable/connection/stream_event_loop.rb', line 28 def attach(io, stream) @todo << lambda do @map[io] = @nio.register(io, :r) @map[io].value = stream end wakeup end |
#detach(io, stream) ⇒ Object
36 37 38 39 40 41 42 43 |
# File 'lib/action_cable/connection/stream_event_loop.rb', line 36 def detach(io, stream) @todo << lambda do @nio.deregister io @map.delete io io.close end wakeup end |
#post(task = nil, &block) ⇒ Object
21 22 23 24 25 26 |
# File 'lib/action_cable/connection/stream_event_loop.rb', line 21 def post(task = nil, &block) task ||= block spawn @executor << task end |
#stop ⇒ Object
54 55 56 57 |
# File 'lib/action_cable/connection/stream_event_loop.rb', line 54 def stop @stopping = true wakeup if @nio end |
#timer(interval, &block) ⇒ Object
17 18 19 |
# File 'lib/action_cable/connection/stream_event_loop.rb', line 17 def timer(interval, &block) Concurrent::TimerTask.new(execution_interval: interval, &block).tap(&:execute) end |
#writes_pending(io) ⇒ Object
45 46 47 48 49 50 51 52 |
# File 'lib/action_cable/connection/stream_event_loop.rb', line 45 def writes_pending(io) @todo << lambda do if monitor = @map[io] monitor.interests = :rw end end wakeup end |