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

net.spy.memcached.protocol.ascii.GetsOperationImpl Maven / Gradle / Ivy

There is a newer version: 2.8.4
Show newest version
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