Examples of MnodeValue


Examples of com.caucho.server.distcache.MnodeValue

  /**
   * Returns the cacheHash
   */
  public final HashKey getCacheHash()
  {
    MnodeValue value = getMnodeValue();

    if (value != null)
      return value.getCacheHashKey();
    else
      return null;
  }
View Full Code Here

Examples of com.caucho.server.distcache.MnodeValue

    return getMnodeValue().getLeaseOwner();
  }

  public void clearLease()
  {
    MnodeValue mnodeValue = getMnodeValue();

    if (mnodeValue != null)
      mnodeValue.clearLease();
  }
View Full Code Here
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.