Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
Patch Available
-
Novice
-
Patch
Description
Hello, i propose you to introduce this new feature to hazelcast component
Hazelcast Distributed Map Producer support more operations but "keySet()" is not implemented yet!
To resolve this improvement insert follow code into "HazelcastMapProducer.java" file
1. Add constant "GET_KEYS_OPERATION"
2. Into process method add
case HazelcastConstants.GET_KEYS_OPERATION: this.getKeys(exchange); break;
3. add private method
/** * get keys set of objects and give it back */ private void getKeys(Exchange exchange) { exchange.getOut().setBody(this.cache.keySet()); }
King regards