net.spy.memcached.ops.MultiGetOperationCallback 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;
/**
* MultiOperationCallback for get operations.
*/
public class MultiGetOperationCallback extends MultiOperationCallback
implements GetOperation.Callback {
public MultiGetOperationCallback(OperationCallback original, int todo) {
super(original, todo);
}
public void gotData(String key, int flags, byte[] data) {
((GetOperation.Callback)originalCallback).gotData(key, flags, data);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy