2017-07-16 13:10:15 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-02-05 06:05:11 -05:00
|
|
|
module ActionCable
|
2015-06-28 14:16:54 -04:00
|
|
|
module Server
|
2015-10-16 04:02:22 -04:00
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
|
|
|
eager_autoload do
|
|
|
|
autoload :Base
|
|
|
|
autoload :Broadcasting
|
|
|
|
autoload :Connections
|
|
|
|
autoload :Configuration
|
2015-07-08 16:36:29 -04:00
|
|
|
|
2015-10-16 04:02:22 -04:00
|
|
|
autoload :Worker
|
2016-08-06 13:13:46 -04:00
|
|
|
autoload :ActiveRecordConnectionManagement, "action_cable/server/worker/active_record_connection_management"
|
2015-10-16 04:02:22 -04:00
|
|
|
end
|
2015-01-14 11:29:31 -05:00
|
|
|
end
|
|
|
|
end
|