class Protocol::HTTP::Body::Buffered
def read
Read the next chunk from the buffered body.
def read return nil unless @chunks if chunk = @chunks[@index] @index += 1 return chunk.dup end end
def read return nil unless @chunks if chunk = @chunks[@index] @index += 1 return chunk.dup end end