--
You received this message because you are subscribed to the Google Groups "vert.x" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vertx+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<serialization>
<portable-version>0</portable-version>
<serializers>
<type-serializer type-class="name.of.class.to.be.serialized">name.of.serializer.class</type-serializer>
</serializers>
</serialization>
As I always say to people with Hazelcast questions, Hazelcast is an implementation detail of Vert.x, but the Vert.x 2 API does have limitations as you mentioned (which are, btw, resolved in Vert.x 3) and some users will need to use it.Aside from what I've mentioned, hopefully someone with more experience with HZ will come along to help, or you can query the HZ forum. I have used the Vert.x Hazelcast instance before in Vertigo (http://github.com/kuujo/vertigo) but only went as far as locating and using the Vert.x Hazelcast instance, not configuring it.
static HazelcastInstance getHazelcastInstance(String instanceName) {
Config cfg = new XmlConfigBuilder().build();
if (instanceName != null) {
cfg.setInstanceName(instanceName);
}
return Hazelcast.newHazelcastInstance(cfg);
}
}