Method: ActionCable::Server::Base#remote_connections

Defined in:
actioncable/lib/action_cable/server/base.rb

#remote_connectionsObject

Gateway to RemoteConnections. See that class for details.



67
68
69
# File 'actioncable/lib/action_cable/server/base.rb', line 67

def remote_connections
  @remote_connections || @mutex.synchronize { @remote_connections ||= RemoteConnections.new(self) }
end