class Aggregate
Definitions
def call(job)
Enqueue a job into the pending buffer.
Start the background processing task if it is not already running.
Implementation
def call(job)
@pending << job
start! or @ready.signal
end