class Async::WorkerPool::Worker

def close

Close the worker thread.
def close
	if thread = @thread
		@thread = nil
		thread.kill
	end
end