Package com.esotericsoftware.shaded.org.objenesis.strategy

Examples of com.esotericsoftware.shaded.org.objenesis.strategy.SerializingInstantiatorStrategy


public final class KryoUtil {
    public static Kryo newKryo() {
        Kryo kryo = new ReplaceableObjectKryo();

        kryo.setRegistrationRequired(false);
        kryo.setInstantiatorStrategy(new SerializingInstantiatorStrategy());
        registerCommonClasses(kryo);
        return kryo;
    }
View Full Code Here

TOP

Related Classes of com.esotericsoftware.shaded.org.objenesis.strategy.SerializingInstantiatorStrategy

Copyright © 2018 www.massapicom. All rights reserved.
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.