Skip to content

Instantly share code, notes, and snippets.

@International
Created November 26, 2012 20:14
Show Gist options
  • Save International/4150327 to your computer and use it in GitHub Desktop.
Save International/4150327 to your computer and use it in GitHub Desktop.
class MyController < ActionController::Base
include ActionController::Live
def stream
response.headers['Content-Type'] = 'text/event-stream'
100.times {
response.stream.write "hello world\n"
sleep 1
}
response.stream.close
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment