Package net.openhft.lang.io

Examples of net.openhft.lang.io.Bytes


    public LongWrapper() {
    }

    @Override
    public void writeExternal(ObjectOutput out) throws IOException {
        Bytes b = (Bytes) out;
        b.writeInt48(l);
    }
View Full Code Here


        b.writeInt48(l);
    }

    @Override
    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
        Bytes b = (Bytes) in;
        l = b.readInt48();
    }
View Full Code Here

TOP

Related Classes of net.openhft.lang.io.Bytes

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.