A kryo {@link Serializer} for {@link Date} and subclasses. Must be registered like this:
Kryo kryo = new Kryo() { public Serializer> getDefaultSerializer(final Class clazz) { if ( Date.class.isAssignableFrom( type ) ) { return new DateSerializer( type ); } return super.getDefaultSerializer( clazz ); } };
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.