Method: ActionCable::Connection::Base#send_async
- Defined in:
- actioncable/lib/action_cable/connection/base.rb
#send_async(method, *arguments) ⇒ Object
Invoke a method on the connection asynchronously through the pool of thread workers.
119 120 121 |
# File 'actioncable/lib/action_cable/connection/base.rb', line 119 def send_async(method, *arguments) worker_pool.async_invoke(self, method, *arguments) end |