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

Version Path
actioncable-6.0.2 lib/action_cable/connection/web_socket.rb
actioncable-6.0.2.rc2 lib/action_cable/connection/web_socket.rb
actioncable-6.0.2.rc1 lib/action_cable/connection/web_socket.rb
actioncable-6.0.1 lib/action_cable/connection/web_socket.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/actioncable-6.0.0/lib/action_cable/connection/web_socket.rb
actioncable-6.0.1.rc1 lib/action_cable/connection/web_socket.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/actioncable-6.0.0/lib/action_cable/connection/web_socket.rb
actioncable-6.0.0 lib/action_cable/connection/web_socket.rb
actioncable-6.0.0.rc2 lib/action_cable/connection/web_socket.rb
actioncable-6.0.0.rc1 lib/action_cable/connection/web_socket.rb
actioncable-6.0.0.beta3 lib/action_cable/connection/web_socket.rb
actioncable-6.0.0.beta2 lib/action_cable/connection/web_socket.rb
actioncable-6.0.0.beta1 lib/action_cable/connection/web_socket.rb