module Async::HTTP::Body::Reader
def body?
def body? @body and !@body.empty? end
def close(error = nil)
def close(error = nil) if @body @body.close(error) @body = nil end end
def each(&block)
- Yield: - read chunks from the body.
def each(&block) if @body @body.each(&block) @body = nil end end
def finish
-
(Buffered)
- buffers the entire body.
def finish if @body body = @body.finish @body = nil return body end end
def read
-
(String)
- the entire body as a string.
def read if @body buffer = @body.join @body = nil return buffer end end
def save(path, mode = ::File::WRONLY, *args)
def save(path, mode = ::File::WRONLY, *args) ::File.open(path, mode, *args) do |file| self.each do |chunk| file.write(chunk) end end end