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

redis.clients.jedis.executors.CommandExecutor Maven / Gradle / Ivy

The newest version!
package redis.clients.jedis.executors;

import redis.clients.jedis.CommandObject;

public interface CommandExecutor extends AutoCloseable {

   T executeCommand(CommandObject commandObject);

  default  T broadcastCommand(CommandObject commandObject) {
    return executeCommand(commandObject);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy