class Roda::RodaPlugins::Streaming::Stream

def each(&out)

Yield values to the block as they are passed in via #<<.
def each(&out)
  @out = out
  @block.call(self)
ensure
  close
end