redis.clients.jedis.commands.BitPipelineBinaryCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis_preview Show documentation
Show all versions of jedis_preview Show documentation
Jedis is a blazingly small and sane Redis java client.
The newest version!
package redis.clients.jedis.commands;
import java.util.List;
import redis.clients.jedis.Response;
import redis.clients.jedis.args.BitCountOption;
import redis.clients.jedis.args.BitOP;
import redis.clients.jedis.params.BitPosParams;
public interface BitPipelineBinaryCommands {
Response setbit(byte[] key, long offset, boolean value);
Response getbit(byte[] key, long offset);
Response bitcount(byte[] key);
Response bitcount(byte[] key, long start, long end);
Response bitcount(byte[] key, long start, long end, BitCountOption option);
Response bitpos(byte[] key, boolean value);
Response bitpos(byte[] key, boolean value, BitPosParams params);
Response> bitfield(byte[] key, byte[]... arguments);
Response> bitfieldReadonly(byte[] key, byte[]... arguments);
Response bitop(BitOP op, byte[] destKey, byte[]... srcKeys);
}