class Falcon::Adapters::Input
def each(&block)
@yields {|chunk| ...}
Enumerate chunks of the request body.
def each(&block) return to_enum unless block_given? while chunk = gets yield chunk end end
def each(&block) return to_enum unless block_given? while chunk = gets yield chunk end end