class Concurrent::Agent

def send!(*args, &action)

Raises:
  • (Concurrent::Agent::Error) - if the Agent is {#failed?}

Returns:
  • (Boolean) - true if the action is successfully enqueued
def send!(*args, &action)
  raise Error.new unless send(*args, &action)
  true
end