class Async::LimitedQueue

def initialize(limit = 1, **options)

def initialize(limit = 1, **options)
	super(**options)
	
	@limit = limit
	
	@full = Notification.new
end