net.spy.memcached.protocol.ascii.GetsOperationImpl 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.protocol.ascii;
import java.util.Collections;
import net.spy.memcached.ops.GetsOperation;
/**
* Implementation of the gets operation.
*/
class GetsOperationImpl extends BaseGetOpImpl implements GetsOperation {
private static final String CMD="gets";
public GetsOperationImpl(String key, GetsOperation.Callback cb) {
super(CMD, cb, Collections.singleton(key));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy