You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Kryo library bundles with it the EnumNameSerializer that can be used as the default serializer for Enum types instead of DefaultSerializers.EnumSerializer.
The EnumNameSerializer can be configured as below - kryo.addDefaultSerializer(Enum.class, EnumNameSerializer.class);
The EnumNameSerializer however does not have a public default constructor and i am unable to configure it declaratively using the subzero-serializers.properties. Also, it appears that the PropertyUserSerializer class supports only setting up one default serializer.
Any recommendations on how the EnumNameSerializer can configured via subzero?
The text was updated successfully, but these errors were encountered:
The Kryo library bundles with it the
EnumNameSerializer
that can be used as the default serializer for Enum types instead ofDefaultSerializers.EnumSerializer.
The EnumNameSerializer can be configured as below -
kryo.addDefaultSerializer(Enum.class, EnumNameSerializer.class);
The EnumNameSerializer however does not have a public default constructor and i am unable to configure it declaratively using the subzero-serializers.properties. Also, it appears that the
PropertyUserSerializer
class supports only setting up one default serializer.Any recommendations on how the
EnumNameSerializer
can configured via subzero?The text was updated successfully, but these errors were encountered: