Class ReactiveTransactionalBloomCommandsImpl<K,V>
- java.lang.Object
-
- io.quarkus.redis.runtime.datasource.AbstractTransactionalCommands
-
- io.quarkus.redis.runtime.datasource.ReactiveTransactionalBloomCommandsImpl<K,V>
-
- All Implemented Interfaces:
ReactiveTransactionalBloomCommands<K,V>,ReactiveTransactionalRedisCommands
public class ReactiveTransactionalBloomCommandsImpl<K,V> extends AbstractTransactionalCommands implements ReactiveTransactionalBloomCommands<K,V>
-
-
Field Summary
-
Fields inherited from class io.quarkus.redis.runtime.datasource.AbstractTransactionalCommands
tx
-
-
Constructor Summary
Constructors Constructor Description ReactiveTransactionalBloomCommandsImpl(ReactiveTransactionalRedisDataSource ds, ReactiveBloomCommandsImpl<K,V> reactive, TransactionHolder tx)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.smallrye.mutiny.Uni<Void>bfadd(K key, V value)Execute the command BF.ADD.io.smallrye.mutiny.Uni<Void>bfexists(K key, V value)Execute the command BF.EXISTS.io.smallrye.mutiny.Uni<Void>bfinsert(K key, BfInsertArgs args, V... values)Execute the command BF.INSERT.io.smallrye.mutiny.Uni<Void>bfmadd(K key, V... values)Execute the command BF.MADD.io.smallrye.mutiny.Uni<Void>bfmexists(K key, V... values)Execute the command BF.MEXISTS.io.smallrye.mutiny.Uni<Void>bfreserve(K key, double errorRate, long capacity)Execute the command BF.RESERVE.io.smallrye.mutiny.Uni<Void>bfreserve(K key, double errorRate, long capacity, BfReserveArgs args)Execute the command BF.RESERVE.-
Methods inherited from class io.quarkus.redis.runtime.datasource.AbstractTransactionalCommands
getDataSource, queuedOrDiscard
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.quarkus.redis.datasource.ReactiveTransactionalRedisCommands
getDataSource
-
-
-
-
Constructor Detail
-
ReactiveTransactionalBloomCommandsImpl
public ReactiveTransactionalBloomCommandsImpl(ReactiveTransactionalRedisDataSource ds, ReactiveBloomCommandsImpl<K,V> reactive, TransactionHolder tx)
-
-
Method Detail
-
bfadd
public io.smallrye.mutiny.Uni<Void> bfadd(K key, V value)
Description copied from interface:ReactiveTransactionalBloomCommandsExecute the command BF.ADD. Summary: Adds the specified element to the specified Bloom filter. Group: bloomIf the bloom filter does not exist, it creates a new one.
- Specified by:
bfaddin interfaceReactiveTransactionalBloomCommands<K,V>- Parameters:
key- the keyvalue- the value, must not benull- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
bfexists
public io.smallrye.mutiny.Uni<Void> bfexists(K key, V value)
Description copied from interface:ReactiveTransactionalBloomCommandsExecute the command BF.EXISTS. Summary: Determines whether an item may exist in the Bloom Filter or not. Group: bloom- Specified by:
bfexistsin interfaceReactiveTransactionalBloomCommands<K,V>- Parameters:
key- the keyvalue- the value, must not benull- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
bfmadd
public io.smallrye.mutiny.Uni<Void> bfmadd(K key, V... values)
Description copied from interface:ReactiveTransactionalBloomCommandsExecute the command BF.MADD. Summary: Adds one or more items to the Bloom Filter and creates the filter if it does not exist yet. This command operates identically to BF.ADD except that it allows multiple inputs and returns multiple values. Group: bloom- Specified by:
bfmaddin interfaceReactiveTransactionalBloomCommands<K,V>- Parameters:
key- the keyvalues- the values, must not benull, must not containnull, must not be empty.- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
bfmexists
public io.smallrye.mutiny.Uni<Void> bfmexists(K key, V... values)
Description copied from interface:ReactiveTransactionalBloomCommandsExecute the command BF.MEXISTS. Summary: Determines if one or more items may exist in the filter or not. Group: bloom- Specified by:
bfmexistsin interfaceReactiveTransactionalBloomCommands<K,V>- Parameters:
key- the keyvalues- the values, must not benull, must not containnull, must not be empty.- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
bfreserve
public io.smallrye.mutiny.Uni<Void> bfreserve(K key, double errorRate, long capacity)
Description copied from interface:ReactiveTransactionalBloomCommandsExecute the command BF.RESERVE. Summary: Creates an empty Bloom Filter with a single sub-filter for the initial capacity requested and with an upper bounderror_rate. Group: bloom- Specified by:
bfreservein interfaceReactiveTransactionalBloomCommands<K,V>- Parameters:
key- the keyerrorRate- The desired probability for false positives. The rate is a decimal value between 0 and 1.capacity- The number of entries intended to be added to the filter.- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
bfreserve
public io.smallrye.mutiny.Uni<Void> bfreserve(K key, double errorRate, long capacity, BfReserveArgs args)
Description copied from interface:ReactiveTransactionalBloomCommandsExecute the command BF.RESERVE. Summary: Creates an empty Bloom Filter with a single sub-filter for the initial capacity requested and with an upper bounderror_rate. Group: bloom- Specified by:
bfreservein interfaceReactiveTransactionalBloomCommands<K,V>- Parameters:
key- the keyerrorRate- The desired probability for false positives. The rate is a decimal value between 0 and 1.capacity- The number of entries intended to be added to the filter.args- the extra parameters- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
bfinsert
public io.smallrye.mutiny.Uni<Void> bfinsert(K key, BfInsertArgs args, V... values)
Description copied from interface:ReactiveTransactionalBloomCommandsExecute the command BF.INSERT. Summary: BF.INSERT is a sugarcoated combination ofBF.RESERVEandBF.ADD. It creates a new filter if the key does not exist using the relevant arguments. Next, allITEMSare inserted. Group: bloom- Specified by:
bfinsertin interfaceReactiveTransactionalBloomCommands<K,V>- Parameters:
key- the keyargs- the creation parametersvalues- the value to add, must not containnull, must not benull, must not be empty- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
-