pub type GetStateRequest = GetStateRequest;Expand description
A request for getting state
Aliased Type§
pub struct GetStateRequest {
pub store_name: String,
pub key: String,
pub consistency: i32,
pub metadata: HashMap<String, String>,
}Fields§
§store_name: StringThe name of state store.
key: StringThe key of the desired state
consistency: i32The read consistency of the state store.
metadata: HashMap<String, String>The metadata which will be sent to state store components.