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

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

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

import java.util.List;
import java.util.Map;

public interface SentinelCommands {
  public List> sentinelMasters();

  public List sentinelGetMasterAddrByName(String masterName);

  public Long sentinelReset(String pattern);

  public List> sentinelSlaves(String masterName);

  public String sentinelFailover(String masterName);

  public String sentinelMonitor(String masterName, String ip, int port, int quorum);

  public String sentinelRemove(String masterName);

  public String sentinelSet(String masterName, Map parameterMap);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy