Page Summary
-
RetrieveBytesResponse contains app data retrieved from BlockStore.
-
It includes a nested class called BlockstoreData which represents a block of app data stored in Block Store.
-
The class provides a method to get a map of app data keys to their corresponding BlockstoreData.
-
It implements the Parcelable interface for serialization.
App data retrieved from BlockStore.
Nested Class Summary
| class | RetrieveBytesResponse.BlockstoreData | A block of app data previously stored to Block Store. | |
Inherited Constant Summary
Field Summary
| public static final Creator<RetrieveBytesResponse> | CREATOR |
Public Method Summary
| Map<String, RetrieveBytesResponse.BlockstoreData> |
getBlockstoreDataMap()
A mapping from app data key to
RetrieveBytesResponse.BlockstoreData found based on a
RetrieveBytesRequest.
|
| void |
writeToParcel(Parcel dest, int
flags)
|
Inherited Method Summary
Fields
public static final Creator<RetrieveBytesResponse> CREATOR
Public Methods
public Map<String, RetrieveBytesResponse.BlockstoreData> getBlockstoreDataMap ()
A mapping from app data key to
RetrieveBytesResponse.BlockstoreData found based on a RetrieveBytesRequest.
The app data key is the value provided when storing the data via
BlockstoreClient.storeBytes(StoreBytesData), as
StoreBytesData.key.
Note that the app data that was stored without an explicit key is associated with
the default key
BlockstoreClient.DEFAULT_BYTES_DATA_KEY.