Package io.dapr.v1

Interface DaprProtos.GetStateRequestOrBuilder

    • Method Detail

      • getStoreName

        String getStoreName()
         The name of state store.
         
        string store_name = 1;
        Returns:
        The storeName.
      • getStoreNameBytes

        com.google.protobuf.ByteString getStoreNameBytes()
         The name of state store.
         
        string store_name = 1;
        Returns:
        The bytes for storeName.
      • getKey

        String getKey()
         The key of the desired state
         
        string key = 2;
        Returns:
        The key.
      • getKeyBytes

        com.google.protobuf.ByteString getKeyBytes()
         The key of the desired state
         
        string key = 2;
        Returns:
        The bytes for key.
      • getConsistencyValue

        int getConsistencyValue()
         The read consistency of the state store.
         
        .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 3;
        Returns:
        The enum numeric value on the wire for consistency.
      • getConsistency

        CommonProtos.StateOptions.StateConsistency getConsistency()
         The read consistency of the state store.
         
        .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 3;
        Returns:
        The consistency.
      • getMetadataCount

        int getMetadataCount()
         The metadata which will be sent to state store components.
         
        map<string, string> metadata = 4;
      • containsMetadata

        boolean containsMetadata​(String key)
         The metadata which will be sent to state store components.
         
        map<string, string> metadata = 4;
      • getMetadataMap

        Map<String,​String> getMetadataMap()
         The metadata which will be sent to state store components.
         
        map<string, string> metadata = 4;
      • getMetadataOrDefault

        String getMetadataOrDefault​(String key,
                                    String defaultValue)
         The metadata which will be sent to state store components.
         
        map<string, string> metadata = 4;
      • getMetadataOrThrow

        String getMetadataOrThrow​(String key)
         The metadata which will be sent to state store components.
         
        map<string, string> metadata = 4;