Methods
I
Included Modules
Instance Public methods
index()
# File actionpack/test/controller/live_stream_test.rb, line 458
def index
  response.headers['Content-Type'] = 'text/event-stream'
  sse = SSE.new(response.stream)
  sse.write("{\"name\":\"John\"}")
  sse.write({ name: "Ryan" })
ensure
  sse.close
end