class Grape::ServeStream::StreamResponse

need to be formatted or pre-read by Rack::Response
A simple class used to identify responses which represent streams (or files) and do not

def ==(other)

Returns:
  • (Boolean) -
def ==(other)
  stream == other.stream
end

def initialize(stream)

Parameters:
  • stream (Object) --
def initialize(stream)
  @stream = stream
end