instance method
call
Ruby on Rails edge
Since edgeSignature
call(env)
Called by Rack to set up the server.
Parameters
-
envreq
Source
# File actioncable/lib/action_cable/server/base.rb, line 62
def call(env)
return config.health_check_application.call(env) if env["PATH_INFO"] == config.health_check_path
setup_heartbeat_timer
Socket.new(self, env).process
end
Defined in actioncable/lib/action_cable/server/base.rb line 62
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionCable::Server::ThreadedExecutor::Base