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

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

There is a newer version: 1.13.0
Show newest version
package redis.clients.jedis;

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