class Protocol::HTTP2::Connection
def write_frame(frame)
def write_frame(frame) synchronize do @framer.write_frame(frame) end # The IO is already synchronized, and we don't want additional contention. @framer.flush end
def write_frame(frame) synchronize do @framer.write_frame(frame) end # The IO is already synchronized, and we don't want additional contention. @framer.flush end