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

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

There is a newer version: 5.24.0
Show newest version
package net.spy.memcached.protocol.ascii;

import net.spy.memcached.ops.Operation;
import net.spy.memcached.ops.OperationCallback;

public interface MetaDebugOperation extends Operation {

    /**
     * Operation callback for the get request.
     */
    public interface Callback extends OperationCallback {
      /**
       * Callback for each result from a get.
       *
       * @param key the key that was retrieved
       * @param flags the flags for this value
       * @param data the data stored under this key
       */
      void debugInfo(String key, String val);
    }
  }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy