On this page
class ActionCable::Connection::WebSocket
Wrap the real socket to minimize the externally-presented API
Attributes
websocket[R]
TODO Change this to private once we've dropped Ruby 2.2 support. Workaround for Ruby 2.2 “private attribute?” warning.
Public Class Methods
# File actioncable/lib/action_cable/connection/web_socket.rb, line 7
def initialize(env, event_target, event_loop, protocols: ActionCable::INTERNAL[:protocols])
@websocket = ::WebSocket::Driver.websocket?(env) ? ClientSocket.new(env, event_target, event_loop, protocols) : nil
end
Public Instance Methods
# File actioncable/lib/action_cable/connection/web_socket.rb, line 15
def alive?
websocket && websocket.alive?
end
# File actioncable/lib/action_cable/connection/web_socket.rb, line 23
def close
websocket.close
end
# File actioncable/lib/action_cable/connection/web_socket.rb, line 11
def possible?
websocket
end
# File actioncable/lib/action_cable/connection/web_socket.rb, line 27
def protocol
websocket.protocol
end
# File actioncable/lib/action_cable/connection/web_socket.rb, line 31
def rack_response
websocket.rack_response
end
# File actioncable/lib/action_cable/connection/web_socket.rb, line 19
def transmit(data)
websocket.transmit data
end
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.