Uses of Class
io.quarkus.redis.datasource.timeseries.AddArgs

Packages that use AddArgs
  • Uses of AddArgs in io.quarkus.redis.datasource.timeseries

    Modifier and Type
    Method
    Description
    AddArgs.chunkSize(int size)
    Sets the memory size, in bytes, allocated for each data chunk.
    AddArgs.compressed()
    Set the series sample's encoding format to COMPRESSED Use it only if you are creating a new time series.
    AddArgs.label(String label, Object value)
    Set a label-value pairs that represent metadata labels of the time series.
    AddArgs.onDuplicate(DuplicatePolicy policy)
    Overwrite key and database configuration for DUPLICATE_POLICY, the policy for handling samples with identical timestamps.
    AddArgs.setRetention(Duration retention)
    Set the maximum retention period, compared to the maximum existing timestamp, in milliseconds.
    AddArgs.uncompressed()
    Set the series sample's encoding format to UNCOMPRESSED Use it only if you are creating a new time series.
    Methods in io.quarkus.redis.datasource.timeseries with parameters of type AddArgs
    Modifier and Type
    Method
    Description
    io.smallrye.mutiny.Uni<Void>
    ReactiveTimeSeriesCommands.tsAdd(K key, double value, AddArgs args)
    Execute the command TS.ADD.
    io.smallrye.mutiny.Uni<Void>
    ReactiveTimeSeriesCommands.tsAdd(K key, long timestamp, double value, AddArgs args)
    Execute the command TS.ADD.
    io.smallrye.mutiny.Uni<Void>
    ReactiveTransactionalTimeSeriesCommands.tsAdd(K key, long timestamp, double value, AddArgs args)
    Execute the command TS.ADD.
    void
    TimeSeriesCommands.tsAdd(K key, double value, AddArgs args)
    Execute the command TS.ADD.
    void
    TimeSeriesCommands.tsAdd(K key, long timestamp, double value, AddArgs args)
    Execute the command TS.ADD.
    void
    TransactionalTimeSeriesCommands.tsAdd(K key, long timestamp, double value, AddArgs args)
    Execute the command TS.ADD.
  • Uses of AddArgs in io.quarkus.redis.runtime.datasource

    Methods in io.quarkus.redis.runtime.datasource with parameters of type AddArgs
    Modifier and Type
    Method
    Description
    (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>
    AbstractTimeSeriesCommands._tsAdd(K key, double value, AddArgs args)
     
    (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>
    AbstractTimeSeriesCommands._tsAdd(K key, long timestamp, double value, AddArgs args)
     
    void
    BlockingTimeSeriesCommandsImpl.tsAdd(K key, double value, AddArgs args)
     
    void
    BlockingTimeSeriesCommandsImpl.tsAdd(K key, long timestamp, double value, AddArgs args)
     
    void
    BlockingTransactionalTimeSeriesCommandsImpl.tsAdd(K key, long timestamp, double value, AddArgs args)
     
    io.smallrye.mutiny.Uni<Void>
    ReactiveTimeSeriesCommandsImpl.tsAdd(K key, double value, AddArgs args)
     
    io.smallrye.mutiny.Uni<Void>
    ReactiveTimeSeriesCommandsImpl.tsAdd(K key, long timestamp, double value, AddArgs args)
     
    io.smallrye.mutiny.Uni<Void>
    ReactiveTransactionalTimeSeriesCommandsImpl.tsAdd(K key, long timestamp, double value, AddArgs args)