Package com.higherfrequencytrading.chronicle

Examples of com.higherfrequencytrading.chronicle.EnumeratedMarshaller


            writeByte(NULL);
            return;
        }

        Class<?> clazz = obj.getClass();
        EnumeratedMarshaller em = chronicle.getMarshaller(clazz);
        if (em == null && autoGenerateMarshaller(obj))
            em = chronicle.acquireMarshaller(clazz);

        if (em != null) {
            writeByte(ENUMED);
            writeEnum(clazz);
            em.write(this, obj);
            return;
        }
        writeByte(SERIALIZED);
        int pos = position();
        writeInt(0); // padding
View Full Code Here

TOP

Related Classes of com.higherfrequencytrading.chronicle.EnumeratedMarshaller

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.