net.spy.memcached.ops.CASOperationStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spymemcached Show documentation
Show all versions of spymemcached Show documentation
A client library for memcached.
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) {
super(success, msg);
casResponse=cres;
}
/**
* Get the CAS response indicated here.
*/
public CASResponse getCASResponse() {
return casResponse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy