class Protocol::HTTP2::Connection

def write_frames

def write_frames
	if @framer
		synchronize do
			yield @framer
		end
		
		# See above note.
		@framer.flush
	else
		raise EOFError, "Connection closed!"
	end
end