OpenBlobForWriteResponse


public final class OpenBlobForWriteResponse
extends Object implements Closeable, Parcelable

java.lang.Object
   ↳ android.app.appsearch.OpenBlobForWriteResponse


The response to provide batch operation results of AppSearchSession.openBlobForWrite.

This class is used to retrieve the result of a batch write operation on a collection of blob handles.

The returned ParcelFileDescriptor must be closed after use to avoid resource leaks. Failing to close the descriptor will result in system resource exhaustion, as each open ParcelFileDescriptor occupies a limited file descriptor in the system.

Summary

Inherited constants

Fields

public static final Creator<OpenBlobForWriteResponse> CREATOR

Public constructors

OpenBlobForWriteResponse(AppSearchBatchResult<AppSearchBlobHandleParcelFileDescriptor> result)

Creates a OpenBlobForWriteResponse with given AppSearchBatchResult.

Public methods

void close()

Closes this stream and releases any system resources associated with it.

int describeContents()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

AppSearchBatchResult<AppSearchBlobHandleParcelFileDescriptor> getResult()

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

void writeToParcel(Parcel dest, int flags)

Flatten this object in to a Parcel.

Inherited methods

Fields

CREATOR

Added in API level 36
Also in T Extensions 17
public static final Creator<OpenBlobForWriteResponse> CREATOR

Public constructors

OpenBlobForWriteResponse

Added in API level 36
Also in T Extensions 17
public OpenBlobForWriteResponse (AppSearchBatchResult<AppSearchBlobHandleParcelFileDescriptor> result)

Creates a OpenBlobForWriteResponse with given AppSearchBatchResult.

Parameters
result AppSearchBatchResult: This value cannot be null.

Public methods

close

Added in API level 36
public void close ()

Closes this stream and releases any system resources associated with it. If the stream is already closed then invoking this method has no effect.

As noted in AutoCloseable.close(), cases where the close may fail require careful attention. It is strongly advised to relinquish the underlying resources and to internally mark the Closeable as closed, prior to throwing the IOException.

describeContents

Added in API level 36
public int describeContents ()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(android.os.Parcel, int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.
Value is either 0 or

getResult

Added in API level 36
Also in T Extensions 17
public AppSearchBatchResult<AppSearchBlobHandleParcelFileDescriptor> getResult ()

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

Returns
AppSearchBatchResult<AppSearchBlobHandleParcelFileDescriptor> A AppSearchBatchResult maps AppSearchBlobHandles which is a unique identifier for a specific blob being committed to the outcome of that write operation. If the operation was successful, the result for that handle is ParcelFileDescriptor; if there was an error, the result contains an AppSearchResult with details of the failure.
This value cannot be null.

writeToParcel

Added in API level 36
public void writeToParcel (Parcel dest, 
                int flags)

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.PARCELABLE_WRITE_RETURN_VALUE.
Value is either 0 or a combination of the following: