class Async::Reactor

def initialize

def initialize
	super
	
	@selector = NIO::Selector.new
	@timers = Timers::Group.new
	
	@stopped = true
end