aboutsummaryrefslogblamecommitdiffstats
path: root/actioncable/lib/action_cable/connection.rb
blob: 20b5dbe78d9f693bd6ec70755456936cb84f8c17 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                  
                   




                                  
                            


                               

                               

                                 
                        
                         
       

     
# frozen_string_literal: true

module ActionCable
  module Connection
    extend ActiveSupport::Autoload

    eager_autoload do
      autoload :Authorization
      autoload :Base
      autoload :ClientSocket
      autoload :Identification
      autoload :InternalChannel
      autoload :MessageBuffer
      autoload :Stream
      autoload :StreamEventLoop
      autoload :Subscriptions
      autoload :TaggedLoggerProxy
      autoload :TestCase
      autoload :WebSocket
    end
  end
end