Uses of Class
io.quarkus.redis.datasource.stream.XAddArgs
-
Packages that use XAddArgs Package Description io.quarkus.redis.datasource.stream io.quarkus.redis.runtime.datasource -
-
Uses of XAddArgs in io.quarkus.redis.datasource.stream
Methods in io.quarkus.redis.datasource.stream that return XAddArgs Modifier and Type Method Description XAddArgsXAddArgs. id(String id)Sets the stream id to identify a given entry inside a stream.XAddArgsXAddArgs. limit(long limit)Sets the maximum entries that can get evicted.XAddArgsXAddArgs. maxlen(Long maxlen)Sets the max length of the stream.XAddArgsXAddArgs. minid(String minid)Evicts entries from the stream having IDs lower to the specified one.XAddArgsXAddArgs. nearlyExactTrimming()When set, prefix themaxlenwith~to enable the almost exact trimming.XAddArgsXAddArgs. nomkstream()Do not create a new stream if the stream does not exist yet.Methods in io.quarkus.redis.datasource.stream with parameters of type XAddArgs Modifier and Type Method Description io.smallrye.mutiny.Uni<String>ReactiveStreamCommands. xadd(K key, XAddArgs args, Map<F,V> payload)Execute the command XADD.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalStreamCommands. xadd(K key, XAddArgs args, Map<F,V> payload)Execute the command XADD.StringStreamCommands. xadd(K key, XAddArgs args, Map<F,V> payload)Execute the command XADD.voidTransactionalStreamCommands. xadd(K key, XAddArgs args, Map<F,V> payload)Execute the command XADD. -
Uses of XAddArgs in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource with parameters of type XAddArgs Modifier and Type Method Description (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractStreamCommands. _xadd(K key, XAddArgs args, Map<F,V> payload)StringBlockingStreamCommandsImpl. xadd(K key, XAddArgs args, Map<F,V> payload)voidBlockingTransactionalStreamCommandsImpl. xadd(K key, XAddArgs args, Map<F,V> payload)io.smallrye.mutiny.Uni<String>ReactiveStreamCommandsImpl. xadd(K key, XAddArgs args, Map<F,V> payload)io.smallrye.mutiny.Uni<Void>ReactiveTransactionalStreamCommandsImpl. xadd(K key, XAddArgs args, Map<F,V> payload)
-