Skip to content

Instantly share code, notes, and snippets.

@purplefox
Created January 21, 2013 18:13
Show Gist options
  • Save purplefox/4588044 to your computer and use it in GitHub Desktop.
Save purplefox/4588044 to your computer and use it in GitHub Desktop.
require "vertx"
Vertx.deploy_verticle('concurrent.rb', nil, 10)
msg = {
"foo" => "bar",
"quux" => "wibble"
}
Vertx.set_periodic(1) {
1000.times do
Vertx::EventBus.publish('test.address', msg)
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment