Package org.activemq.util

Examples of org.activemq.util.FastInputStream


            out.writeUTF((String) value);
            return buffer.toByteArray();
        }

        public void fromBytes(byte[] data) throws IOException {
            DataInputStream in = new DataInputStream(new FastInputStream(data));
            this.previousKey = wrapLong(in.readLong());
            this.nextKey = wrapLong(in.readLong());
            this.value = in.readUTF();
        }
View Full Code Here

TOP

Related Classes of org.activemq.util.FastInputStream

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.