Package org.activemq.advisories

Examples of org.activemq.advisories.ConnectionAdvisor


            Receipt receipt = remoteConnection.syncSendRequest(info);
            if (receipt != null) {
                remoteBrokerName = receipt.getBrokerName();
                remoteClusterName = receipt.getClusterName();
            }
            connectionAdvisor = new ConnectionAdvisor(remoteConnection);
            connectionAdvisor.addListener(this);
            connectionAdvisor.start();
            if (remotePrefetchPolicy != null) {
                remoteConnection.setPrefetchPolicy(remotePrefetchPolicy);
            }
View Full Code Here


   
    public void testRequests() throws Exception{
        try {
        TopicSession s = requestorConnection.createTopicSession(false,Session.AUTO_ACKNOWLEDGE);
        TopicRequestor requestor = new TopicRequestor(s,destination);
        ConnectionAdvisor ca = new ConnectionAdvisor(requestorConnection);
        ca.start();
        //
        // A peer:// when connected will have 1 + (2 * number of connections) connections
        // As we have 2 peers - total connections == 6!!
        ca.waitForActiveConnections(6, 30000);
        for (Iterator i = ca.getConnections().iterator(); i.hasNext();){
            System.out.println(i.next());
        }
        for (int i =0; i < MESSAGE_COUNT; i++){
            Message msg = s.createTextMessage("test:" + i);
            Message receipt = requestor.request(msg);
View Full Code Here

            Receipt receipt = remoteConnection.syncSendRequest(info);
            if (receipt != null){
                remoteBrokerName = receipt.getBrokerName();
                remoteClusterName = receipt.getClusterName();
            }
            connectionAdvisor = new ConnectionAdvisor(remoteConnection);
            connectionAdvisor.addListener(this);
            connectionAdvisor.start();
            connected.set(true);
        }
    }
View Full Code Here

   
    public void testRequests() throws Exception{
        try {
        TopicSession s = requestorConnection.createTopicSession(false,Session.AUTO_ACKNOWLEDGE);
        TopicRequestor requestor = new TopicRequestor(s,destination);
        ConnectionAdvisor ca = new ConnectionAdvisor(requestorConnection);
        ca.start();
        //
        // A peer:// when connected will have 1 + (2 * number of connections) connections
        // As we have 2 peers - total connections == 6!!
        ca.waitForActiveConnections(6, 30000);
        for (Iterator i = ca.getConnections().iterator(); i.hasNext();){
            System.out.println(i.next());
        }
        for (int i =0; i < MESSAGE_COUNT; i++){
            Message msg = s.createTextMessage("test:" + i);
            Message receipt = requestor.request(msg);
View Full Code Here

            Receipt receipt = remoteConnection.syncSendRequest(info);
            if (receipt != null) {
                remoteBrokerName = receipt.getBrokerName();
                remoteClusterName = receipt.getClusterName();
            }
            connectionAdvisor = new ConnectionAdvisor(remoteConnection);
            connectionAdvisor.addListener(this);
            connectionAdvisor.start();
            if (remotePrefetchPolicy != null) {
                remoteConnection.setPrefetchPolicy(remotePrefetchPolicy);
            }
View Full Code Here

            Receipt receipt = remoteConnection.syncSendRequest(info);
            if (receipt != null){
                remoteBrokerName = receipt.getBrokerName();
                remoteClusterName = receipt.getClusterName();
            }
            connectionAdvisor = new ConnectionAdvisor(remoteConnection);
            connectionAdvisor.addListener(this);
            connectionAdvisor.start();
            connected.set(true);
        }
    }
View Full Code Here

   
    public void testRequests() throws Exception{
        try {
        TopicSession s = requestorConnection.createTopicSession(false,Session.AUTO_ACKNOWLEDGE);
        TopicRequestor requestor = new TopicRequestor(s,destination);
        ConnectionAdvisor ca = new ConnectionAdvisor(requestorConnection);
        ca.start();
        //
        // A peer:// when connected will have 1 + (2 * number of connections) connections
        // As we have 2 peers - total connections == 6!!
        ca.waitForActiveConnections(6, 30000);
        for (Iterator i = ca.getConnections().iterator(); i.hasNext();){
            System.out.println(i.next());
        }
        for (int i =0; i < MESSAGE_COUNT; i++){
            Message msg = s.createTextMessage("test:" + i);
            Message receipt = requestor.request(msg);
View Full Code Here

TOP

Related Classes of org.activemq.advisories.ConnectionAdvisor

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.