Package org.activemq.message

Examples of org.activemq.message.BrokerAdminCommand


     * @throws IOException thrown if an error occurs
     */

    public void writePacket(Packet packet, DataOutput dataOut) throws IOException {
        super.writePacket(packet, dataOut);
        BrokerAdminCommand info = (BrokerAdminCommand) packet;
        super.writeUTF(info.getCommand(), dataOut);
        ActiveMQDestination.writeToStream(info.getDestination(), dataOut);
    }
View Full Code Here

TOP

Related Classes of org.activemq.message.BrokerAdminCommand

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.