blob: cca68942890dd820ea28c42aea3e7b176107d909 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'action_cable/subscription_adapter/inline'
module ActionCable
module SubscriptionAdapter
class Async < Inline # :nodoc:
private
def new_subscriber_map
AsyncSubscriberMap.new
end
class AsyncSubscriberMap < SubscriberMap
def add_subscriber(*)
Concurrent.global_io_executor.post { super }
end
def invoke_callback(*)
Concurrent.global_io_executor.post { super }
end
end
end
end
end
|