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

redis.clients.jedis.DebugParams Maven / Gradle / Ivy

package redis.clients.jedis;

/**
 * @deprecated This class will be removed in next major release.
 */
@Deprecated
public class DebugParams {

  private String[] command;

  private DebugParams() {
  }

  public String[] getCommand() {
    return command;
  }

  public static DebugParams SEGFAULT() {
    DebugParams debugParams = new DebugParams();
    debugParams.command = new String[] { "SEGFAULT" };
    return debugParams;
  }

  public static DebugParams OBJECT(String key) {
    DebugParams debugParams = new DebugParams();
    debugParams.command = new String[] { "OBJECT", key };
    return debugParams;
  }

  public static DebugParams RELOAD() {
    DebugParams debugParams = new DebugParams();
    debugParams.command = new String[] { "RELOAD" };
    return debugParams;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy