Package org.apache.activemq.command

Examples of org.apache.activemq.command.ControlCommand


public class ControlCommandTest extends BaseCommandTestSupport {

    public static final ControlCommandTest SINGLETON = new ControlCommandTest();

    public Object createObject() throws Exception {
        ControlCommand info = new ControlCommand();
        populateObject(info);
        return info;
    }
View Full Code Here


        return info;
    }

    protected void populateObject(Object object) throws Exception {
        super.populateObject(object);
        ControlCommand info = (ControlCommand)object;
        info.setCommand("Command:1");

    }
View Full Code Here


    public static final ControlCommandTest SINGLETON = new ControlCommandTest();

    public Object createObject() throws Exception {
        ControlCommand info = new ControlCommand();
        populateObject(info);
        return info;
    }
View Full Code Here

        return info;
    }

    protected void populateObject(Object object) throws Exception {
        super.populateObject(object);
        ControlCommand info = (ControlCommand) object;

        info.setCommand("Command:1");
    }
View Full Code Here


    public static final ControlCommandTest SINGLETON = new ControlCommandTest();

    public Object createObject() throws Exception {
        ControlCommand info = new ControlCommand();
        populateObject(info);
        return info;
    }
View Full Code Here

        return info;
    }

    protected void populateObject(Object object) throws Exception {
        super.populateObject(object);
        ControlCommand info = (ControlCommand) object;

        info.setCommand("Command:1");
    }
View Full Code Here

   
    /**
     * @return a new object instance
     */
    public DataStructure createObject() {
        return new ControlCommand();
    }
View Full Code Here

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

        ControlCommand info = (ControlCommand)o;
        info.setCommand(tightUnmarshalString(dataIn, bs));

    }
View Full Code Here

    /**
     * Write the booleans that this object uses to a BooleanStream
     */
    public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {

        ControlCommand info = (ControlCommand)o;

        int rc = super.tightMarshal1(wireFormat, o, bs);
        rc += tightMarshalString1(info.getCommand(), bs);

        return rc + 0;
    }
View Full Code Here

     * @throws IOException thrown if an error occurs
     */
    public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
        super.tightMarshal2(wireFormat, o, dataOut, bs);

        ControlCommand info = (ControlCommand)o;
        tightMarshalString2(info.getCommand(), dataOut, bs);

    }
View Full Code Here

TOP

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

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.