class ActionCable::SubscriptionAdapter::Async::AsyncSubscriberMap

Public Class Methods

new(event_loop) click to toggle source
Calls superclass method
# File lib/action_cable/subscription_adapter/async.rb, line 12
def initialize(event_loop)
  @event_loop = event_loop
  super()
end

Public Instance Methods

add_subscriber(*) click to toggle source
Calls superclass method
# File lib/action_cable/subscription_adapter/async.rb, line 17
def add_subscriber(*)
  @event_loop.post { super }
end
invoke_callback(*) click to toggle source
Calls superclass method
# File lib/action_cable/subscription_adapter/async.rb, line 21
def invoke_callback(*)
  @event_loop.post { super }
end