class Protocol::HTTP2::Framer

def write_frame(frame)

@parameter frame [Frame] the frame to write.
After writing one or more frames, you should call flush to ensure the frames are sent to the remote peer.
Write a frame to the underlying IO.
def write_frame(frame)
	# Console.debug(self, name: "write") {frame.inspect}
	
	frame.write(@stream)
	
	return frame
end