Skip to content

Instantly share code, notes, and snippets.

@enebo
Created October 7, 2015 22:01
Show Gist options
  • Save enebo/53880ffc799ac9494ea9 to your computer and use it in GitHub Desktop.
Save enebo/53880ffc799ac9494ea9 to your computer and use it in GitHub Desktop.
class Sample
include com.hazelcast.core.MessageListener
def onMessage(msg)
puts "Message received = " + msg
end
end
sample = com.hazelcast.core.Sample.new
topic = com.hazelcast.core.SampleHazelcast.getTopic "default"
topic.addMessageListener sample
topic.publish "my-message-object"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment