Method: Protocol::HTTP2::Continued#write

Defined in:
lib/protocol/http2/continuation_frame.rb

#write(stream) ⇒ Object



58
59
60
61
62
63
64
# File 'lib/protocol/http2/continuation_frame.rb', line 58

def write(stream)
  super
  
  if continuation = self.continuation
    continuation.write(stream)
  end
end