Uses of Class
io.quarkus.redis.datasource.string.SetArgs

Packages that use SetArgs
  • Uses of SetArgs in io.quarkus.redis.datasource.string

    Modifier and Type
    Method
    Description
    SetArgs.ex(long timeout)
    Deprecated.
    Set the specified expire time, in seconds.
    SetArgs.ex(Duration timeout)
    Deprecated.
    Sets the expiration.
    SetArgs.exAt(long timestamp)
    Deprecated.
    Sets the expiration time
    SetArgs.exAt(Instant timestamp)
    Deprecated.
    Sets the expiration time
    SetArgs.get()
    Deprecated.
    Return the old string stored at key, or nil if key did not exist.
    SetArgs.keepttl()
    Deprecated.
    Set the value and retain the existing TTL.
    SetArgs.nx()
    Deprecated.
    Only set the key if it does not already exist.
    SetArgs.px(long timeout)
    Deprecated.
    Set the specified expire time, in milliseconds.
    SetArgs.px(Duration timeout)
    Deprecated.
    Set the specified expire time, in milliseconds.
    SetArgs.pxAt(long timestamp)
    Deprecated.
    Set the specified Unix time at which the key will expire, in milliseconds.
    SetArgs.pxAt(Instant timestamp)
    Deprecated.
    Set the specified Unix time at which the key will expire, in milliseconds.
    SetArgs.xx()
    Deprecated.
    Only set the key if it already exists.
    Methods in io.quarkus.redis.datasource.string with parameters of type SetArgs
    Modifier and Type
    Method
    Description
    io.smallrye.mutiny.Uni<Void>
    ReactiveStringCommands.set(K key, V value, SetArgs setArgs)
    Deprecated.
    Execute the command SET.
    io.smallrye.mutiny.Uni<Void>
    ReactiveTransactionalStringCommands.set(K key, V value, SetArgs setArgs)
    Deprecated.
    Execute the command SET.
    void
    StringCommands.set(K key, V value, SetArgs setArgs)
    Deprecated.
    Execute the command SET.
    void
    TransactionalStringCommands.set(K key, V value, SetArgs setArgs)
    Deprecated.
    Execute the command SET.
    io.smallrye.mutiny.Uni<V>
    ReactiveStringCommands.setGet(K key, V value, SetArgs setArgs)
    Deprecated.
    Execute the command SET.
    io.smallrye.mutiny.Uni<Void>
    ReactiveTransactionalStringCommands.setGet(K key, V value, SetArgs setArgs)
    Deprecated.
    Execute the command SET.
    StringCommands.setGet(K key, V value, SetArgs setArgs)
    Deprecated.
    Execute the command SET.
    void
    TransactionalStringCommands.setGet(K key, V value, SetArgs setArgs)
    Deprecated.
    Execute the command SET.
  • Uses of SetArgs in io.quarkus.redis.runtime.datasource

    Methods in io.quarkus.redis.runtime.datasource with parameters of type SetArgs
    Modifier and Type
    Method
    Description
    (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>
    AbstractStringCommands._set(K key, V value, SetArgs setArgs)
     
    (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>
    AbstractStringCommands._setGet(K key, V value, SetArgs setArgs)
     
    void
    BlockingStringCommandsImpl.set(K key, V value, SetArgs setArgs)
     
    void
    BlockingTransactionalStringCommandsImpl.set(K key, V value, SetArgs setArgs)
     
    io.smallrye.mutiny.Uni<Void>
    ReactiveStringCommandsImpl.set(K key, V value, SetArgs setArgs)
     
    io.smallrye.mutiny.Uni<Void>
    ReactiveTransactionalStringCommandsImpl.set(K key, V value, SetArgs setArgs)
     
    BlockingStringCommandsImpl.setGet(K key, V value, SetArgs setArgs)
     
    void
    BlockingTransactionalStringCommandsImpl.setGet(K key, V value, SetArgs setArgs)
     
    io.smallrye.mutiny.Uni<V>
    ReactiveStringCommandsImpl.setGet(K key, V value, SetArgs setArgs)
     
    io.smallrye.mutiny.Uni<Void>
    ReactiveTransactionalStringCommandsImpl.setGet(K key, V value, SetArgs setArgs)