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

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

There is a newer version: 2.8.4
Show 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) {
		super(success, msg);
		casResponse=cres;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy