Uses of Class
io.quarkus.redis.datasource.stream.XClaimArgs
Packages that use XClaimArgs
-
Uses of XClaimArgs in io.quarkus.redis.datasource.stream
Methods in io.quarkus.redis.datasource.stream that return XClaimArgsModifier and TypeMethodDescriptionXClaimArgs.force()Creates the pending message entry in the PEL even if certain specified IDs are not already in the PEL assigned to a different client.Set the idle time (last time it was delivered) of the message.XClaimArgs.justId()In the returned structure, only set the IDs of messages successfully claimed, without returning the actual message.Sets the last id of the message to claim.XClaimArgs.retryCount(int retryCount) Set the retry counter to the specified value.XClaimArgs.time(long time) This is the same asIDLEbut instead of a relative amount of milliseconds, it sets the idle time to a specific Unix time (in milliseconds).Methods in io.quarkus.redis.datasource.stream with parameters of type XClaimArgsModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<List<StreamMessage<K,F, V>>> ReactiveStreamCommands.xclaim(K key, String group, String consumer, Duration minIdleTime, XClaimArgs args, String... id) Execute the command XCLAIM.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalStreamCommands.xclaim(K key, String group, String consumer, Duration minIdleTime, XClaimArgs args, String... id) Execute the command XCLAIM.List<StreamMessage<K,F, V>> StreamCommands.xclaim(K key, String group, String consumer, Duration minIdleTime, XClaimArgs args, String... id) Execute the command XCLAIM.voidTransactionalStreamCommands.xclaim(K key, String group, String consumer, Duration minIdleTime, XClaimArgs args, String... id) Execute the command XCLAIM. -
Uses of XClaimArgs in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource with parameters of type XClaimArgsModifier and TypeMethodDescription(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractStreamCommands._xclaim(K key, String group, String consumer, Duration minIdleTime, XClaimArgs args, String... id) List<StreamMessage<K,F, V>> BlockingStreamCommandsImpl.xclaim(K key, String group, String consumer, Duration minIdleTime, XClaimArgs args, String... id) voidBlockingTransactionalStreamCommandsImpl.xclaim(K key, String group, String consumer, Duration minIdleTime, XClaimArgs args, String... id) io.smallrye.mutiny.Uni<List<StreamMessage<K,F, V>>> ReactiveStreamCommandsImpl.xclaim(K key, String group, String consumer, Duration minIdleTime, XClaimArgs args, String... id) io.smallrye.mutiny.Uni<Void>ReactiveTransactionalStreamCommandsImpl.xclaim(K key, String group, String consumer, Duration minIdleTime, XClaimArgs args, String... id)