method
handle_open
v7.1.3.2 -
Show latest stable
- Class:
ActionCable::Connection::Base
handle_open()private
No documentation available.
# File actioncable/lib/action_cable/connection/base.rb, line 184
def handle_open
@protocol = websocket.protocol
connect if respond_to?(:connect)
subscribe_to_internal_channel
send_welcome_message
message_buffer.process!
server.add_connection(self)
rescue ActionCable::Connection::Authorization::UnauthorizedError
close(reason: ActionCable::INTERNAL[:disconnect_reasons][:unauthorized], reconnect: false) if websocket.alive?
end