class Async::Wrapper

def initialize(io, task)

Parameters:
  • task (Task) -- the task that is managing this wrapper.
  • io () -- the native object to wrap.
def initialize(io, task)
	@io = io
	@task = task
	@monitor = nil
end