Skip to content

Commit

Permalink
Deprecate unused interfaces
Browse files Browse the repository at this point in the history
Changes to be committed:
	modified:   src/main/java/redis/clients/jedis/commands/BinaryScriptingCommandsPipeline.java
	modified:   src/main/java/redis/clients/jedis/commands/ScriptingCommandsPipeline.java
  • Loading branch information
sazzad16 committed Jan 18, 2022
1 parent 9b702b8 commit afcce7c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Expand Up @@ -3,6 +3,11 @@
import java.util.List;
import redis.clients.jedis.Response;

/**
* WARNING: This interface will be removed in upcoming MINOR release.
* @deprecated This interface will be removed in upcoming MINOR release.
*/
@Deprecated
public interface BinaryScriptingCommandsPipeline {

Response<Object> eval(byte[] script, int keyCount, byte[]... params);
Expand Down
Expand Up @@ -3,6 +3,11 @@
import java.util.List;
import redis.clients.jedis.Response;

/**
* WARNING: This interface will be removed in upcoming MINOR release.
* @deprecated This interface will be removed in upcoming MINOR release.
*/
@Deprecated
public interface ScriptingCommandsPipeline {

Response<Object> eval(String script, int keyCount, String... params);
Expand Down

0 comments on commit afcce7c

Please sign in to comment.