Uses of Class
io.quarkus.redis.datasource.stream.XTrimArgs
-
Packages that use XTrimArgs Package Description io.quarkus.redis.datasource.stream io.quarkus.redis.runtime.datasource -
-
Uses of XTrimArgs in io.quarkus.redis.datasource.stream
Methods in io.quarkus.redis.datasource.stream that return XTrimArgs Modifier and Type Method Description XTrimArgsXTrimArgs. limit(long limit)Sets the maximum entries that can get evicted.XTrimArgsXTrimArgs. maxlen(long maxlen)Sets the max length of the stream.XTrimArgsXTrimArgs. minid(String minid)Evicts entries from the stream having IDs lower to the specified one.XTrimArgsXTrimArgs. nearlyExactTrimming()When set, prefix themaxlenwith~to enable the almost exact trimming.Methods in io.quarkus.redis.datasource.stream with parameters of type XTrimArgs Modifier and Type Method Description io.smallrye.mutiny.Uni<Long>ReactiveStreamCommands. xtrim(K key, XTrimArgs args)Execute the command XTRIM.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalStreamCommands. xtrim(K key, XTrimArgs args)Execute the command XTRIM.longStreamCommands. xtrim(K key, XTrimArgs args)Execute the command XTRIM.voidTransactionalStreamCommands. xtrim(K key, XTrimArgs args)Execute the command XTRIM. -
Uses of XTrimArgs in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource with parameters of type XTrimArgs Modifier and Type Method Description (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractStreamCommands. _xtrim(K key, XTrimArgs args)longBlockingStreamCommandsImpl. xtrim(K key, XTrimArgs args)voidBlockingTransactionalStreamCommandsImpl. xtrim(K key, XTrimArgs args)io.smallrye.mutiny.Uni<Long>ReactiveStreamCommandsImpl. xtrim(K key, XTrimArgs args)io.smallrye.mutiny.Uni<Void>ReactiveTransactionalStreamCommandsImpl. xtrim(K key, XTrimArgs args)
-