All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.spy.memcached.ops.CASOperationStatus Maven / Gradle / Ivy

The newest version!
package net.spy.memcached.ops;

import net.spy.memcached.CASResponse;

/**
 * OperationStatus subclass for indicating CAS status.
 */
public class CASOperationStatus extends OperationStatus {

  private final CASResponse casResponse;

  public CASOperationStatus(boolean success, String msg, CASResponse cres, StatusCode code) {
    super(success, msg, code);
    casResponse = cres;
  }

  /**
   * Get the CAS response indicated here.
   */
  public CASResponse getCASResponse() {
    return casResponse;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy