On Mon, Dec 8, 2014 at 2:50 PM, Sajini De Silva <[email protected]> wrote:

> SerializerConfig sc = new SerializerConfig()
>                 .setImplementation(new TreeMapSerializer())
>                 .setTypeClass(new TreeSet<Long>().getClass());
>         Config config = new Config();
>         config.getSerializationConfig().addSerializerConfig(sc);
>         HazelcastInstance primaryHazelcastInstance=
> Hazelcast.newHazelcastInstance(config);
>         IMap<String, TreeSet<Long>> testMap =
> primaryHazelcastInstance.getMap("testMap");
>
>         TreeSet<Long> slotIdSet = new TreeSet<Long>();
>         slotIdSet.add(Long.valueOf(1212121));
>         slotIdSet.add(Long.valueOf(3413131));



Change the code as follows & see whether it still works. Most probably it
won't work:

SerializerConfig sc = new SerializerConfig()
                .setImplementation(new TreeMapSerializer())
                .setTypeClass(new TreeSet<Long>().getClass());
        Config config = new Config();

        HazelcastInstance primaryHazelcastInstance= Hazelcast.
newHazelcastInstance(config);
        IMap<String, TreeSet<Long>> testMap = primaryHazelcastInstance.
getMap("testMap");
        config.getSerializationConfig().addSerializerConfig(sc);

        TreeSet<Long> slotIdSet = new TreeSet<Long>();
        slotIdSet.add(Long.valueOf(1212121));
        slotIdSet.add(Long.valueOf(3413131));


-- 
*Afkham Azeez*
Director of Architecture; WSO2, Inc.; http://wso2.com
Member; Apache Software Foundation; http://www.apache.org/
* <http://www.apache.org/>*
*email: **[email protected]* <[email protected]>
* cell: +94 77 3320919blog: **http://blog.afkham.org*
<http://blog.afkham.org>
*twitter: **http://twitter.com/afkham_azeez*
<http://twitter.com/afkham_azeez>
*linked-in: **http://lk.linkedin.com/in/afkhamazeez
<http://lk.linkedin.com/in/afkhamazeez>*

*Lean . Enterprise . Middleware*
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to