class Async::WorkerPool::Worker

def run

Execute work until the queue is closed.
def run
	while work = @work.pop
		work.call
	end
end