Package org.jboss.cache.misc

Source Code of org.jboss.cache.misc.Client

package org.jboss.cache.misc;

import org.jboss.cache.CacheException;
import org.jboss.cache.TreeCacheMBean;

import javax.naming.InitialContext;
import javax.naming.NamingException;
import java.util.Properties;

/**
* Simple client which looks up a TreeCache via JNDI and invokes a bunch of methods on it
* @author Bela Ban
* @version $Id: Client.java 201 2005-07-08 05:58:12Z msurtani $
*/
public class Client {
   public static void main(String[] args) {
      try {
         new Client().start(args);
      }
      catch(NamingException e) {
         e.printStackTrace();
      }
      catch(CacheException e) {
         e.printStackTrace();
      }
   }

   private void start(String[] args) throws NamingException, CacheException {
      TreeCacheMBean cache;
      String jndi_name=args.length > 0? args[0] : "MyCache";
      Properties props=new Properties();
      props.setProperty("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
      props.setProperty("java.naming.provider.url", "jnp://localhost:1099");
      props.setProperty("java.naming.factory.url.pkgs", "org.jboss.naming");
      InitialContext ctx=new InitialContext(props);
      cache=(TreeCacheMBean)ctx.lookup(jndi_name);
      cache.put("a/b/c", null);
      System.out.println("Cache: " + cache.printDetails());
      System.out.println("cache mode: " + cache.getCacheMode());
      int numLocks, numNodes, numAttrs;

      numLocks=cache.getNumberOfLocksHeld();
      numNodes=cache.getNumberOfNodes();
      numAttrs=cache.getNumberOfAttributes();
      System.out.println("Nodes: " + numNodes + ", locks: " + numLocks + ", attributes: " + numAttrs);
   }
}
TOP

Related Classes of org.jboss.cache.misc.Client

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.