net.rubyeye.xmemcached.command.StoreCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmemcached Show documentation
Show all versions of xmemcached Show documentation
Extreme performance modern memcached client for java
package net.rubyeye.xmemcached.command;
/**
* A store command interface for STORE commands such as SET,ADD
*
* @author apple
*
*/
public interface StoreCommand {
public void setValue(Object value);
public Object getValue();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy