Package com.caucho.server.distcache

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


    return getMnodeValue().getLeaseOwner();
  }

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

    if (mnodeValue != null)
      mnodeValue.clearLease();
  }
View Full Code Here

TOP

Related Classes of com.caucho.server.distcache.MnodeValue

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.