BatchResult

public final class BatchResult implements Result


The result of a batch operation. The result status is successful if and only if all results are successful. Individual results can be retrieved using BatchResultToken objects.

Summary

Public fields

final Status

Public methods

Status

Returns the status of this result.

R
<R extends Result> take(BatchResultToken<R> resultToken)

Retrieves a result from the batch.

Public fields

status

public final Status status

Public methods

getStatus

public Status getStatus()

Returns the status of this result. Use isSuccess to determine whether the call was successful, and getStatusCode to determine what the error cause was.

Certain errors are due to failures that can be resolved by launching a particular intent. The resolution intent is available via getResolution.

take

public R <R extends Result> take(BatchResultToken<R> resultToken)

Retrieves a result from the batch.

After the result has been retrieved, it is an error to attempt to retrieve it again. It is the responsibility of the caller to release any resources associated with the returned result. Some result types may implement Releasable, in which case release should be used to free the associated resources.