class Async::LimitedQueue

def initialize(limit = 1)

def initialize(limit = 1)
	super()
	
	@limit = limit
	@full = Async::Queue.new
end