class Async::Reactor

def initialize(wrappers: IO)

Parameters:
  • wrappers (Hash) -- A mapping for wrapping pre-existing IO objects.
def initialize(wrappers: IO)
	super(nil)
	
	@wrappers = wrappers
	
	@selector = NIO::Selector.new
	@timers = Timers::Group.new
	
	@stopped = true
end