Class GetValue

java.lang.Object
io.fluxcapacitor.common.api.Request
io.fluxcapacitor.common.api.keyvalue.GetValue
All Implemented Interfaces:
JsonType

public class GetValue extends Request
Request to retrieve a value from the legacy key-value store.

This request returns the serialized value associated with the specified key, if present. It is part of the legacy key-value subsystem, which has largely been superseded by the document store.

Behavior

  • If the key is not found, the returned Data will be null or empty depending on usage context.
  • The value is returned as raw serialized data in Data format.

Usage Notes

  • This API is mostly retained for backwards compatibility. Prefer using the SearchClient for modern data queries and lookups.
  • The result is returned in a GetValueResult response.
See Also:
  • Constructor Details

    • GetValue

      public GetValue()