Package com.sun.messaging.jmq.jmsserver.multibroker.raptor

Examples of com.sun.messaging.jmq.jmsserver.multibroker.raptor.ClusterDestInfo


    public DestinationUpdateChangeRecord(GPacket gp)
        throws IOException {
        operation = gp.getType();

        ClusterDestInfo cdi = ClusterDestInfo.newInstance(gp);
        name = cdi.getDestName();
        type = cdi.getDestType();
    }
View Full Code Here


    public static synchronized void recordUpdateDestination(
                               Destination d, ChangeRecordCallback cb)
                               throws BrokerException {

        ClusterDestInfo cdi = ClusterDestInfo.newInstance(d);
        GPacket gp = cdi.getGPacket(ProtocolGlobals.G_UPDATE_DESTINATION, true);
        ChangeRecordInfo cri = storeChangeRecord(gp, cb);
        d.setCurrentChangeRecordInfo(ProtocolGlobals.G_UPDATE_DESTINATION, cri);
    }
View Full Code Here

    public static void recordRemoveDestination(
                  Destination d, ChangeRecordCallback cb)
                  throws BrokerException {

        ClusterDestInfo cdi = ClusterDestInfo.newInstance(d);
        GPacket gp = cdi.getGPacket(ProtocolGlobals.G_REM_DESTINATION, true);
        ChangeRecordInfo cri = storeChangeRecord(gp, cb);
        d.setCurrentChangeRecordInfo(ProtocolGlobals.G_UPDATE_DESTINATION, cri);
    }
View Full Code Here

TOP

Related Classes of com.sun.messaging.jmq.jmsserver.multibroker.raptor.ClusterDestInfo

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.