jclawson/hazeltask

DistributedExecutorServiceImpl.validateTask should check the hazelcast config if an object can be serialized

Opened this issue · 0 comments

Objects no longer have to implement Serizalizable to be capable of being serialized in hazelcast. For example:

hazelcastConfig
                .getSerializationConfig()
                .addSerializerConfig(
                        new SerializerConfig().setTypeClass(TaskStatus.class).setImplementation(
                                new TaskStatusSerializer(smileMapper))

                )