Flowdock
method

start_driver

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ClientSocket
start_driver() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actioncable/lib/action_cable/connection/client_socket.rb, line 57
      def start_driver
        return if @driver.nil? || @driver_started
        @stream.hijack_rack_socket

        if callback = @env["async.callback"]
          callback.call([101, {}, @stream])
        end

        @driver_started = true
        @driver.start
      end
Register or log in to add new notes.