Skip to content

Instantly share code, notes, and snippets.

@justlev
Created December 14, 2018 11:17
Show Gist options
  • Save justlev/b981c63d98d53e07ac5922cac2e17614 to your computer and use it in GitHub Desktop.
Save justlev/b981c63d98d53e07ac5922cac2e17614 to your computer and use it in GitHub Desktop.
EM.run {
client = Faye::Client.new('http://localhost:3000/faye')
publication = client.publish('/foo', 'text' => 'Hello world')
publication.callback do
puts 'SUCCESS!'
EM.stop
end
publication.errback do |error|
puts "[PUBLISH FAILED]"
EM.stop
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment