class Protocol::Rack::Input
def each(&block)
@yields {|chunk| ...}
Enumerate chunks of the request body.
def each(&block) return to_enum unless block_given? return if closed? while chunk = read_partial yield chunk end end
def each(&block) return to_enum unless block_given? return if closed? while chunk = read_partial yield chunk end end