class Async::IO::TCPSocket::StreamWrapper

def close

def close
	@io.close
end

def flush

def flush
	@io.flush
end

def initialize(io)

def initialize(io)
	@io = io
end

def read(*args)

def read(*args)
	@io.sysread(*args)
end

def sync= value

def sync= value
	@io.sync = value
end

def write(*args)

def write(*args)
	@io.syswrite(*args)
end