public interface KeepSerialized
Marker interface for region values that should always be stored in serialized form in the cache.
These region values can be deserialized and returned to user through various methods such as
region.get().
By default, region values are stored in deserialized form the first time they are deserialized.
If a class implements this interface, it will be kept stored in serialized form.
This interface should only be used on classes whose deserialization cost is very low since every
read has to do a deserialization.