Created
July 3, 2014 20:24
-
-
Save tobias/941e6594bd9b117e4c43 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'torquebox-web' | |
require 'torquebox-messaging' | |
topic = TorqueBox::Messaging::Topic.new('browser-messages') | |
TorqueBox::Web::Server.sockjs('/messages').on_connection do |conn| | |
listener = topic.listen do |m| | |
conn.write(m) | |
end | |
conn.on_data do |data| | |
topic.publish(data) | |
end | |
conn.on_close do | |
listener.close | |
end | |
topic.publish("Welcome!") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment