blob: 6e9265dc0633d0ca3c6a7db30e4e30e2bafff49b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
module ActionCable
class Server
cattr_accessor(:logger, instance_reader: true) { Rails.logger }
attr_accessor :registered_channels, :worker_pool
def initialize(redis_config:, channels:, worker_pool_size: 100, connection: Connection)
@redis_config = redis_config
@registered_channels = Set.new(channels)
@worker_pool = ActionCable::Worker.pool(size: worker_pool_size)
@connection_class = connection
end
def call(env)
@connection_class.new(self, env).process
end
def pubsub
@pubsub ||= EM::Hiredis.connect(@redis_config['url']).pubsub
end
end
end
|