Package org.apache.activemq.command

Examples of org.apache.activemq.command.BaseCommand


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

        BaseCommand info = (BaseCommand)o;

        int rc = super.tightMarshal1(wireFormat, o, bs);
        bs.writeBoolean(info.isResponseRequired());

        return rc + 4;
    }
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);

        BaseCommand info = (BaseCommand)o;
        dataOut.writeInt(info.getCommandId());
        bs.readBoolean();

    }
View Full Code Here

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

        BaseCommand info = (BaseCommand)o;
        info.setCommandId(dataIn.readInt());
        info.setResponseRequired(dataIn.readBoolean());

    }
View Full Code Here

    /**
     * Write the booleans that this object uses to a BooleanStream
     */
    public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {

        BaseCommand info = (BaseCommand)o;

        super.looseMarshal(wireFormat, o, dataOut);
        dataOut.writeInt(info.getCommandId());
        dataOut.writeBoolean(info.isResponseRequired());

    }
View Full Code Here

*/
public abstract class BaseCommandTestSupport extends DataFileGeneratorTestSupport {

    protected void populateObject(Object object) throws Exception {
        super.populateObject(object);
        BaseCommand info = (BaseCommand)object;
        info.setCommandId(1);
        info.setResponseRequired(true);

    }
View Full Code Here

    private static String commandToString(Object command) {
        StringBuilder sb = new StringBuilder();
       
        if (command instanceof BaseCommand) {

            BaseCommand bc = (BaseCommand)command;
            sb.append(command.getClass().getSimpleName());
            sb.append(' ');
            sb.append(bc.isResponseRequired() ? 'T' : 'F');
           
           
            Message m = null;
           
            if (bc instanceof Message) {
View Full Code Here

*/
public abstract class BaseCommandTestSupport extends DataFileGeneratorTestSupport {

    protected void populateObject(Object object) throws Exception {
        super.populateObject(object);
        BaseCommand info = (BaseCommand)object;
        info.setCommandId(1);
        info.setResponseRequired(true);

    }
View Full Code Here

            Object key = wireFormat.unmarshal(new ByteSequence(data));
            command.setMessageStoreKey(key);
            size = dataIn.readInt();
            data = new byte[size];
            dataIn.readFully(data);
            BaseCommand bc = (BaseCommand)wireFormat.unmarshal(new ByteSequence(data));
            command.setCommand(bc);
            list.add(command);
        }
        return result;
View Full Code Here

TOP

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

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.