Package org.jboss.ha.framework.interfaces

Examples of org.jboss.ha.framework.interfaces.DistributedState


    * @param value the distributed object
    *
    */
   public void setDistributedState(String key, Serializable value) throws Exception
   {
      DistributedState ds = this.getHAPartition().getDistributedStateService();
      ds.set(this.getHAServiceKey(), key, value);
   }
View Full Code Here


    * @return Serializable the distributed object
    *
    */
   public Serializable getDistributedState(String key)
   {
      DistributedState ds = this.getHAPartition().getDistributedStateService();
      return ds.get(this.getHAServiceKey(), key);
   }
View Full Code Here

TOP

Related Classes of org.jboss.ha.framework.interfaces.DistributedState

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.