method
client_socket_class
v5.0.0.1 -
Show latest stable
- Class:
ActionCable::Server::Configuration
client_socket_class()public
No documentation available.
# File actioncable/lib/action_cable/server/configuration.rb, line 47
def client_socket_class
if use_faye
ActionCable::Connection::FayeClientSocket
else
ActionCable::Connection::ClientSocket
end
end