RemoveBlobResponse


class RemoveBlobResponse : Parcelable
kotlin.Any
   ↳ android.app.appsearch.RemoveBlobResponse

Results of AppSearchSession.removeBlob, 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

Inherited constants
Public constructors

Creates a RemoveBlobResponse with given AppSearchBatchResult.

Public methods
AppSearchBatchResult<AppSearchBlobHandle!, Void!>

Returns the AppSearchBatchResult object containing the results of the removal operation for each AppSearchBlobHandle.

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Properties
static Parcelable.Creator<RemoveBlobResponse!>

Public constructors

RemoveBlobResponse

RemoveBlobResponse(result: AppSearchBatchResult<AppSearchBlobHandle!, Void!>)

Creates a RemoveBlobResponse with given AppSearchBatchResult.

Parameters
result AppSearchBatchResult<AppSearchBlobHandle!, Void!>: This value cannot be null.

Public methods

getResult

fun getResult(): AppSearchBatchResult<AppSearchBlobHandle!, Void!>

Returns the AppSearchBatchResult object containing the results of the removal operation for each AppSearchBlobHandle.

Return
AppSearchBatchResult<AppSearchBlobHandle!, Void!> A AppSearchBatchResult maps AppSearchBlobHandles which is a unique identifier for a specific blob being removed to the outcome of that commit. If the operation was successful, the result for that handle is null; if there was an error, the result contains an AppSearchResult with details of the failure.

writeToParcel

fun writeToParcel(
    dest: Parcel,
    flags: Int
): Unit

Flatten this object in to a Parcel.

Parameters
dest Parcel: This value cannot be null.
flags Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Properties

CREATOR

static val CREATOR: Parcelable.Creator<RemoveBlobResponse!>