Sha256: 9fb2eb46d3a4ad2af30f52d5dcc27db25f22aafef8b855fca5b6c9836f445041
Contents?: true
Size: 850 Bytes
Versions: 113
Compression:
Stored size: 850 Bytes
Contents
# frozen_string_literal: true require "websocket/driver" module ActionCable module Connection # Wrap the real socket to minimize the externally-presented API class WebSocket # :nodoc: 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 def possible? websocket end def alive? websocket && websocket.alive? end def transmit(data) websocket.transmit data end def close websocket.close end def protocol websocket.protocol end def rack_response websocket.rack_response end private attr_reader :websocket end end end
Version data entries
113 entries across 109 versions & 9 rubygems