java.lang.Object | |
↳ | com.google.android.gms.common.api.PendingResults |
Provides factory methods for PendingResult
instances, primarily for use in tests.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns a
PendingResult that has been canceled.
| |||||||||||
Returns a
PendingResult that has been canceled.
| |||||||||||
Returns a
PendingResult with the specified Status .
| |||||||||||
Returns a
PendingResult with the specified result.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Returns a PendingResult
that has been canceled.
Returns a PendingResult
that has been canceled.
result | The canceled result. Must have a status code of
CANCELED .
|
---|
Returns a PendingResult
with the specified Status
.
If setResultCallback(ResultCallback
is called on the returned PendingResult then
onResult(R)
will immediately be called on the main thread. If
await()
is called it will immediate return result
.
Returns a PendingResult
with the specified result.
If setResultCallback(ResultCallback
is called on the returned PendingResult then
onResult(R)
will immediately be called on the main thread. If
await()
is called it will immediate return result
.
Calling cancel()
on the returned PendingResult is not supported.