Class StoreValuesAndWait
java.lang.Object
io.fluxzero.common.api.Request
io.fluxzero.common.api.Command
io.fluxzero.common.api.keyvalue.StoreValuesAndWait
- All Implemented Interfaces:
JsonType
Deprecated.
Deprecated: This command was used in older versions of Fluxzero to store values and block
until they were persisted.
This pattern is no longer used or emitted by Fluxzero applications and should not be relied upon in new development.
Use StoreValues with Guarantee.STORED instead for explicit durability semantics.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classDeprecated.Metric representation of the deprecated store call. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Indicates the delivery guarantee required for this command.Deprecated.Optionally specifies a routing key for this command, which may be used to partition work or apply consistent hashing when processed in the Fluxzero Runtime.toMetric()Deprecated.Converts this object into a compact metric representation for logging or monitoring.toString()Deprecated.
-
Constructor Details
-
StoreValuesAndWait
public StoreValuesAndWait()Deprecated.
-
-
Method Details
-
getGuarantee
Deprecated.Description copied from class:CommandIndicates the delivery guarantee required for this command.- Specified by:
getGuaranteein classCommand- Returns:
- the
Guaranteelevel (e.g.STORED,SENT,NONE)
-
routingKey
Deprecated.Description copied from class:CommandOptionally specifies a routing key for this command, which may be used to partition work or apply consistent hashing when processed in the Fluxzero Runtime.- Overrides:
routingKeyin classCommand- Returns:
- a routing key string, or
nullif not specified
-
toString
-
toMetric
Deprecated.Description copied from interface:JsonTypeConverts this object into a compact metric representation for logging or monitoring.Used by the Fluxzero Java SDK to avoid logging large payloads directly while still tracking platform usage.
- Returns:
- a safe and compact object suitable for serialization to the metrics log
-
StoreValuesinstead. This class remains for compatibility but is no longer used.