Package co.paralleluniverse.io.serialization.KryoSerializer

Examples of co.paralleluniverse.io.serialization.KryoSerializer.KryoObjectOutputStream


    private static final KryoSerializer ks = new KryoSerializer();
   
    @Override
    public void write(Kryo kryo, Output output, T obj) {
        try {
            KryoObjectOutputStream oos = (KryoObjectOutputStream)output;
            obj.writeExternal(oos);
        } catch (IOException e) {
            throw new AssertionError(e);
        }
    }
View Full Code Here

TOP

Related Classes of co.paralleluniverse.io.serialization.KryoSerializer.KryoObjectOutputStream

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.