class Async::Semaphore

def initialize(limit = 1)

def initialize(limit = 1)
	@count = 0
	@limit = limit
	@waiting = []
end