class Async::WorkerPool::Worker

def run

def run
	while work = @work.pop
		work.call
	end
end