Index

A C D E G J L N R S 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

A

addRecord(String, String) - Method in class net.bugreaper.modules.redis.helpers.RedisHashHelper
Adds a new record to the Redis HASH.
addRecord(String, String) - Method in class net.bugreaper.modules.redis.helpers.RedisListHelper
Adds a new record to the Redis LIST.
addRecord(String, String) - Method in class net.bugreaper.modules.redis.helpers.RedisSetHelper
Adds a new record to the Redis SET.
addRecord(String, String) - Method in class net.bugreaper.modules.redis.helpers.RedisStreamHelper
Adds a JSON record to the specified Redis STREAM.
addRecord(String, String) - Method in class net.bugreaper.modules.redis.helpers.RedisStringHelper
Adds a new record to the Redis STRING key.
addRecord(String, String) - Method in class net.bugreaper.modules.redis.helpers.RedisZSetHelper
Adds a record to the specified Redis Sorted Set (ZSET).
addRecord(String, String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Adds a record to Redis using the configured Redis data type helper.
addRecord(String, String) - Method in class net.bugreaper.modules.redis.Redis
 
addRecord(String, String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisHashHelper
Adds a new record to the Redis HASH and sets expiration time for the key.
addRecord(String, String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisListHelper
Adds a new record to the Redis LIST and sets expiration time for the key.
addRecord(String, String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisSetHelper
Adds a record to the specified Redis SET and sets its time-to-live (TTL).
addRecord(String, String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisStreamHelper
Adds a JSON record to the specified Redis STREAM.
addRecord(String, String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisStringHelper
Adds a new record to the Redis STRING key and sets expiration time.
addRecord(String, String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisZSetHelper
Adds a record to the specified Redis Sorted Set (ZSET) and sets its time-to-live (TTL).
addRecord(String, String, long) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Adds a record to Redis with an expiration time.
addRecord(String, String, long) - Method in class net.bugreaper.modules.redis.Redis
 
attachAndLogList(List<String>, String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
awaitMs - Variable in class net.bugreaper.modules.redis.helpers.RedisHelper
default ms await for asserts and grab

C

checkKeyExists(String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
checkKeyTypeIs(String, String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
cleanAll() - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
cleanAll() - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Removes ALL data from current Redis database.
cleanAll() - Method in class net.bugreaper.modules.redis.Redis
 

D

deleteKeysByPattern(String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
deleteKeysByPattern(String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Deletes Redis keys matching the specified pattern.
deleteKeysByPattern(String) - Method in class net.bugreaper.modules.redis.Redis
 

E

execute(Consumer<Jedis>) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
executeReturn(Function<Jedis, R>) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 

G

getConfigSummary() - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
getConfigSummary() - Method in interface net.bugreaper.modules.redis.interfaces.RedisConfig
Returns and logs (at INFO level) a human-readable summary of all resolved configuration values.
getConfigSummary() - Method in class net.bugreaper.modules.redis.Redis
 
getInstance(String) - Static method in class net.bugreaper.modules.redis.Redis
Returns a unique Redis helper instance for the specified Redis data type.
getKeyExistsStatus(String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
getKeyExistsStatus(String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Checks whether the specified Redis key exists.
getKeyExistsStatus(String) - Method in class net.bugreaper.modules.redis.Redis
 
getKeysCountByPattern(String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
getKeysCountByPattern(String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Returns the number of Redis keys matching the specified pattern.
getKeysCountByPattern(String) - Method in class net.bugreaper.modules.redis.Redis
 
getKeyType(String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
getKeyType(String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Returns the Redis data type of the specified key.
getKeyType(String) - Method in class net.bugreaper.modules.redis.Redis
 
getPrefix(String) - Static method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
getRecordsCountByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisHashHelper
Returns the number of records stored in the specified Redis HASH.
getRecordsCountByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisListHelper
Returns the number of records stored in the specified Redis LIST.
getRecordsCountByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisSetHelper
Returns the number of records stored in the specified Redis SET.
getRecordsCountByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisStreamHelper
Returns the number of records stored in the specified Redis STREAM.
getRecordsCountByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisStringHelper
Returns the number of records stored for the specified Redis STRING key.
getRecordsCountByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisZSetHelper
Returns the number of records stored in the specified Redis Sorted Set (ZSET).
getRecordsCountByKey(String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Returns the number of records stored under the specified Redis key.
getRecordsCountByKey(String) - Method in class net.bugreaper.modules.redis.Redis
 
getTtlByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
getTtlByKey(String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Returns the remaining TTL (time-to-live) of the specified Redis key.
getTtlByKey(String) - Method in class net.bugreaper.modules.redis.Redis
 
grabRecordsByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisHashHelper
Returns all records stored in the specified Redis HASH.
grabRecordsByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisListHelper
Returns all records stored in the specified Redis LIST.
grabRecordsByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisSetHelper
Returns all records stored in the specified Redis SET.
grabRecordsByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisStreamHelper
Returns all records stored in the specified Redis STREAM.
grabRecordsByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisStringHelper
Returns the record stored in the specified Redis STRING key.
grabRecordsByKey(String) - Method in class net.bugreaper.modules.redis.helpers.RedisZSetHelper
Returns all records stored in the specified Redis Sorted Set (ZSET).
grabRecordsByKey(String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Retrieves all records stored under the specified Redis key.
grabRecordsByKey(String) - Method in class net.bugreaper.modules.redis.Redis
 

J

jedisPool - Variable in class net.bugreaper.modules.redis.helpers.RedisHelper
 

L

Log - Class in net.bugreaper.modules.redis.logger
Utility class for handling logging within the Redis module.
LOGGER - Static variable in class net.bugreaper.modules.redis.logger.Log
Logger instance for the Redis module.

N

net.bugreaper.modules.redis - package net.bugreaper.modules.redis
 
net.bugreaper.modules.redis.exceptions - package net.bugreaper.modules.redis.exceptions
 
net.bugreaper.modules.redis.helpers - package net.bugreaper.modules.redis.helpers
 
net.bugreaper.modules.redis.interfaces - package net.bugreaper.modules.redis.interfaces
 
net.bugreaper.modules.redis.logger - package net.bugreaper.modules.redis.logger
 

R

Redis - Class in net.bugreaper.modules.redis
Universal Redis helper facade that provides a common API for different Redis data types.
Redis(String, int, String, String, String) - Constructor for class net.bugreaper.modules.redis.Redis
This constructor initializes client for interaction with Redis
RedisConfig - Interface in net.bugreaper.modules.redis.interfaces
Interface that defines helper configuration methods for helper operations.
RedisHashHelper - Class in net.bugreaper.modules.redis.helpers
Helper class for interacting with Redis HASH data types.
RedisHashHelper(String, int, String, String) - Constructor for class net.bugreaper.modules.redis.helpers.RedisHashHelper
This constructor initializes client for interaction with Redis HASH data types
RedisHelper<T extends RedisHelper<T>> - Class in net.bugreaper.modules.redis.helpers
Abstract base class for Redis helper implementations.
RedisHelper(String, int, String, String) - Constructor for class net.bugreaper.modules.redis.helpers.RedisHelper
This constructor initializes client for interaction with Redis LIST data types
RedisHelperException - Exception in net.bugreaper.modules.redis.exceptions
Exceptions that can be thrown during Minio helper use
RedisHelperException(String) - Constructor for exception net.bugreaper.modules.redis.exceptions.RedisHelperException
Constructs a new exception with the specified detail message
RedisHelperInt - Interface in net.bugreaper.modules.redis.interfaces
Interface defines methods for facilitating helper interactions and assertions.
RedisListHelper - Class in net.bugreaper.modules.redis.helpers
Helper class for interacting with Redis LIST data types.
RedisListHelper(String, int, String, String) - Constructor for class net.bugreaper.modules.redis.helpers.RedisListHelper
This constructor initializes client for interaction with Redis LIST data types
RedisSetHelper - Class in net.bugreaper.modules.redis.helpers
Helper class for interacting with Redis SET data types.
RedisSetHelper(String, int, String, String) - Constructor for class net.bugreaper.modules.redis.helpers.RedisSetHelper
This constructor initializes client for interaction with Redis SET data types
RedisStreamHelper - Class in net.bugreaper.modules.redis.helpers
Helper class for interacting with Redis STREAM data types.
RedisStreamHelper(String, int, String, String) - Constructor for class net.bugreaper.modules.redis.helpers.RedisStreamHelper
This constructor initializes client for interaction with Redis STREAM data types
RedisStringHelper - Class in net.bugreaper.modules.redis.helpers
Helper class for interacting with Redis STRING data types.
RedisStringHelper(String, int, String, String) - Constructor for class net.bugreaper.modules.redis.helpers.RedisStringHelper
This constructor initializes client for interaction with Redis STRING data types
RedisZSetHelper - Class in net.bugreaper.modules.redis.helpers
Helper class for interacting with Redis Sorted Set (ZSET) data types.
RedisZSetHelper(String, int, String, String) - Constructor for class net.bugreaper.modules.redis.helpers.RedisZSetHelper
This constructor initializes client for interaction with Redis ZSET data types

S

SCAN_BATCH_SIZE - Static variable in class net.bugreaper.modules.redis.helpers.RedisHelper
default ms await for asserts and grab
seeKeyExists(String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
seeKeyExists(String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Asserts that the specified Redis key exists.
seeKeyExists(String) - Method in class net.bugreaper.modules.redis.Redis
 
seeKeysCountByPatternIsExactly(String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
seeKeysCountByPatternIsExactly(String, long) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Asserts that the number of Redis keys matching the specified pattern is exactly the expected count.
seeKeysCountByPatternIsExactly(String, long) - Method in class net.bugreaper.modules.redis.Redis
 
seeKeysCountByPatternIsGreaterThan(String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
seeKeysCountByPatternIsGreaterThan(String, long) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Asserts that the number of Redis keys matching the specified pattern is greater than the given value.
seeKeysCountByPatternIsGreaterThan(String, long) - Method in class net.bugreaper.modules.redis.Redis
 
seeKeysCountByPatternIsLessThan(String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
seeKeysCountByPatternIsLessThan(String, long) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Asserts that the number of Redis keys matching the specified pattern is less than the given value.
seeKeysCountByPatternIsLessThan(String, long) - Method in class net.bugreaper.modules.redis.Redis
 
seeKeyTypeIs(String, String) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
seeKeyTypeIs(String, String) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Asserts that the specified Redis key has the expected data type.
seeKeyTypeIs(String, String) - Method in class net.bugreaper.modules.redis.Redis
 
seeRecordsCountByKeyIsExactly(String, long) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
seeRecordsCountByKeyIsExactly(String, long) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Asserts that the number of records in the Redis key is exactly the expected value.
seeRecordsCountByKeyIsExactly(String, long) - Method in class net.bugreaper.modules.redis.Redis
 
seeTtlIsGreaterThan(String, int) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
seeTtlIsGreaterThan(String, int) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Asserts that the key TTL is greater than the specified value.
seeTtlIsGreaterThan(String, int) - Method in class net.bugreaper.modules.redis.Redis
 
seeTtlIsLessThan(String, int) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
seeTtlIsLessThan(String, int) - Method in interface net.bugreaper.modules.redis.interfaces.RedisHelperInt
Asserts that the key TTL is less than the specified value.
seeTtlIsLessThan(String, int) - Method in class net.bugreaper.modules.redis.Redis
 
setAwaitMs(int) - Method in class net.bugreaper.modules.redis.helpers.RedisHelper
 
setAwaitMs(int) - Method in interface net.bugreaper.modules.redis.interfaces.RedisConfig
Configures the global await timeout for assertions and operations that use await.
setAwaitMs(int) - Method in class net.bugreaper.modules.redis.Redis
 
A C D E G J L N R S 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form