Package cluster.queue

Source Code of cluster.queue.ClusterAdmin

/*
* JORAM: Java(TM) Open Reliable Asynchronous Messaging
* Copyright (C) 2004 - 2008 ScalAgent Distributed Technologies
* Copyright (C) 2004 - France Telecom R&D
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
* USA.
*
* Initial developer(s): ScalAgent Distributed Technologies
* Contributor(s):
*/
package cluster.queue;

import java.util.Properties;

import org.objectweb.joram.client.jms.ConnectionFactory;
import org.objectweb.joram.client.jms.Queue;
import org.objectweb.joram.client.jms.admin.AdminModule;
import org.objectweb.joram.client.jms.admin.ClusterConnectionFactory;
import org.objectweb.joram.client.jms.admin.ClusterQueue;
import org.objectweb.joram.client.jms.admin.User;
import org.objectweb.joram.client.jms.tcp.TcpConnectionFactory;

/**
* Administers three agent servers for the cluster sample.
*/
public class ClusterAdmin {
 
  public static void main(String[] args) throws Exception {
   
    System.out.println();
    System.out.println("Cluster of queues administration...");

    AdminModule.connect("root", "root", 60);
    javax.naming.Context ictx = new javax.naming.InitialContext();

    User.create("anonymous", "anonymous", 0);
    User.create("anonymous", "anonymous", 1);
    User.create("anonymous", "anonymous", 2);

    ConnectionFactory cf0 = (ConnectionFactory) TcpConnectionFactory.create("localhost", 16010);
    ConnectionFactory cf1 = (ConnectionFactory) TcpConnectionFactory.create("localhost", 16011);
    ConnectionFactory cf2 = (ConnectionFactory) TcpConnectionFactory.create("localhost", 16012);

    ictx.bind("cf0", cf0);
    ictx.bind("cf1", cf1);
    ictx.bind("cf2", cf2);

    ClusterConnectionFactory clusterCF = new ClusterConnectionFactory();
    clusterCF.addConnectionFactory("server0", cf0);
    clusterCF.addConnectionFactory("server1", cf1);
    clusterCF.addConnectionFactory("server2", cf2);
    ictx.rebind("clusterCF", clusterCF);

    Properties prop = new Properties();
    prop.setProperty("period","100");
    prop.setProperty("producThreshold","25");
    prop.setProperty("consumThreshold","2");
    prop.setProperty("autoEvalThreshold","true");
    prop.setProperty("waitAfterClusterReq","100");

    Queue queue0 = Queue.create(0, null, Queue.CLUSTER_QUEUE, prop);
    Queue queue1 = Queue.create(1, null, Queue.CLUSTER_QUEUE, prop);
    Queue queue2 = Queue.create(2, null, Queue.CLUSTER_QUEUE, prop);
   
    System.out.println("queue0 = " + queue0);
    System.out.println("queue1 = " + queue1);
    System.out.println("queue2 = " + queue1);
   
    queue0.addClusteredQueue(queue1);
    queue0.addClusteredQueue(queue2);
   
    ictx.bind("queue0", queue0);
    ictx.bind("queue1", queue1);
    ictx.bind("queue2", queue2);

    ClusterQueue clusterQueue = new ClusterQueue();
    clusterQueue.addDestination("server0", queue0);
    clusterQueue.addDestination("server1", queue1);
    clusterQueue.addDestination("server2", queue2);
    clusterQueue.setFreeReading();
    clusterQueue.setFreeWriting();
    ictx.rebind("clusterQueue", clusterQueue);

    System.out.println("clusterQueue = " + clusterQueue);

    ictx.close();
    AdminModule.disconnect();
  }
}
TOP

Related Classes of cluster.queue.ClusterAdmin

TOP
Copyright © 2018 www.massapi.com. 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.