class Async::Task

def bind(io)

Returns:
  • (Wrapper) - The wrapped object.

Parameters:
  • io () -- the native object to bind to this task.
def bind(io)
	@ios[io.fileno] ||= @reactor.wrap(io, self)
end