RemoveBlobResponse
@ExperimentalAppSearchApi
class RemoveBlobResponse
Results of removeBlobAsync, containing the outcome of the removal of each handles.
This class is used to retrieve the result of a batch removal operation on a collection of blob handles.
Summary
Constants |
|
|---|---|
const Parcelable.Creator<RemoveBlobResponse!> |
Public constructors |
|---|
RemoveBlobResponse(Creates a |
Public functions |
|
|---|---|
AppSearchBatchResult<AppSearchBlobHandle!, Void!> |
Returns the |
Unit |
writeToParcel(dest: Parcel, flags: Int)To be implemented by child classes. |
Constants
Public constructors
RemoveBlobResponse
RemoveBlobResponse(
result: AppSearchBatchResult<AppSearchBlobHandle!, Void!>
)
Creates a RemoveBlobResponse with given AppSearchBatchResult.
Public functions
getResult
fun getResult(): AppSearchBatchResult<AppSearchBlobHandle!, Void!>
Returns the AppSearchBatchResult object containing the results of the removal operation for each AppSearchBlobHandle.
| Returns | |
|---|---|
AppSearchBatchResult<AppSearchBlobHandle!, Void!> |
A |
writeToParcel
fun writeToParcel(dest: Parcel, flags: Int): Unit
To be implemented by child classes.
This is purely for code sync purpose. Have writeToParcel here so we can keep "@Override" in child classes.