instance method
send_async
Ruby on Rails 5.1.7
Since v5.0.7.2 Last seen in v8.1.3.1Signature
send_async(method, *arguments)
Invoke a method on the connection asynchronously through the pool of thread workers.
Parameters
-
methodreq -
argumentsrest
Source
# File actioncable/lib/action_cable/connection/base.rb, line 101
def send_async(method, *arguments)
worker_pool.async_invoke(self, method, *arguments)
end
Defined in actioncable/lib/action_cable/connection/base.rb line 101
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionCable::Connection::Base