GetValueKVStoreRequest¶
Purpose¶
Find stored data by its key in the KV-store and return the value.
Type¶
Reception:
Records with fields:
Storage Key
: StorageKeyV1
The key that maps to the requested value in the KV-store.
Triggers
Records with fields:
Storage Key
: StorageKeyV1
The key that maps to the requested value in the KV-store.
Storage Value
: StorageValueV1
The requested value in the KV-store.
Behavior¶
Performs a key-based search operation in the KV-store to find the corresponding value.
Message Flow¶
sequenceDiagram
%% --8<-- [start:sequence]
Any Local Engine ->>+ Local KV Storage Engine: GetValueKVStoreRequest
Local KV Storage Engine -->>- Any Local Engine: GetValueKVStoreResponse
%% --8<-- [end:sequence]