Reputation: 374
I need to get the current hazelcast instance inside EntryProcessor.process method.
I need to send message to topic in process method.
How do I get the instance?
Regards
Upvotes: 0
Views: 333
Reputation: 591
You can easily achieve it by implementing HazelcastInstanceAware
interface in your EntryProcessor
class.
Upvotes: 2