Package org.apache.activemq.command

Examples of org.apache.activemq.command.DataArrayResponse


     */
    public void tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs)
        throws IOException {
        super.tightUnmarshal(wireFormat, o, dataIn, bs);

        DataArrayResponse info = (DataArrayResponse)o;

        if (bs.readBoolean()) {
            short size = dataIn.readShort();
            org.apache.activemq.command.DataStructure value[] = new org.apache.activemq.command.DataStructure[size];
            for (int i = 0; i < size; i++) {
                value[i] = (org.apache.activemq.command.DataStructure)tightUnmarsalNestedObject(wireFormat,
                                                                                                dataIn, bs);
            }
            info.setData(value);
        } else {
            info.setData(null);
        }

    }
View Full Code Here

TOP

Related Classes of org.apache.activemq.command.DataArrayResponse

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.