class Async::LimitedQueue

def self.new(...)

Other tags:
    Private: - This exists purely for emitting a warning.
def self.new(...)
	warn("`require 'async/limited_queue'` to use `Async::LimitedQueue`.", uplevel: 1, category: :deprecated) if $VERBOSE
	
	super
end