Class: ActionCable::RemoteConnections::RemoteConnection

Inherits:
Object
  • Object
show all
Includes:
Connection::Identification, Connection::InternalChannel
Defined in:
actioncable/lib/action_cable/remote_connections.rb

Overview

Represents a single remote connection found via ActionCable.server.remote_connections.where(*). Exists solely for the purpose of calling #disconnect on that connection.

Defined Under Namespace

Classes: InvalidIdentifiersError

Instance Method Summary collapse

Methods included from Connection::Identification

#connection_identifier

Methods included from ActiveSupport::Concern

#append_features, #class_methods, extended, #included, #prepend_features, #prepended

Constructor Details

#initialize(server, ids) ⇒ RemoteConnection

Returns a new instance of RemoteConnection.



46
47
48
49
# File 'actioncable/lib/action_cable/remote_connections.rb', line 46

def initialize(server, ids)
  @server = server
  set_identifier_instance_vars(ids)
end

Instance Method Details

#disconnect(reconnect: true) ⇒ Object

Uses the internal channel to disconnect the connection.



52
53
54
# File 'actioncable/lib/action_cable/remote_connections.rb', line 52

def disconnect(reconnect: true)
  server.broadcast internal_channel, { type: "disconnect", reconnect: reconnect }
end