class Async::Reactor

A wrapper around the the scheduler which binds it to the current thread automatically.

def self.run(...)

Deprecated:
  • Replaced by {Kernel::Async}.
def self.run(...)
	Async(...)
end

def initialize(...)

def initialize(...)
	super
	
	Fiber.set_scheduler(self)
end