class Concurrent::Agent

def <<(action)

Other tags:
    See: #send_off -

Returns:
  • (Concurrent::Agent) - self

Parameters:
  • action (Proc) -- the action dispatch to be enqueued
def <<(action)
  send_off(&action)
  self
end