class Roda::RodaPlugins::Streaming::Stream

def <<(data)

Add output to the streaming response body.
def <<(data)
  @scheduler.schedule{@front.call(data.to_s)}
  self
end