You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Andrea Cosentino (JIRA)" <ji...@apache.org> on 2016/06/17 09:51:05 UTC

[jira] [Assigned] (CAMEL-10068) Distribuited map, retrieve hashmap keys

     [ https://issues.apache.org/jira/browse/CAMEL-10068?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrea Cosentino reassigned CAMEL-10068:
----------------------------------------

    Assignee: Andrea Cosentino

> Distribuited map, retrieve hashmap keys
> ---------------------------------------
>
>                 Key: CAMEL-10068
>                 URL: https://issues.apache.org/jira/browse/CAMEL-10068
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-hazelcast
>            Reporter: Fabrizio Spataro
>            Assignee: Andrea Cosentino
>            Priority: Minor
>              Labels: hazelcast, map
>
> 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 
> {code}
>    case HazelcastConstants.GET_KEYS_OPERATION:
>             this.getKeys(exchange);
>             break;
> {code}
> 3. add private method
> {code}
>      /**
>      * get keys set of objects and give it back
>      */
>     private void getKeys(Exchange exchange) {
>         exchange.getOut().setBody(this.cache.keySet());
>     }
> {code}
> King regards



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)