com.google.android.gms.awareness.FenceApi |
Main entry point for the Awareness Fence API.
The methods must be used in conjunction with a GoogleApiClient
instance. For example:
new GoogleApiClient.Builder(context)
.addApi(Awareness.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build()
See also:
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Query the state of a registered fence in the Awareness API.
| |||||||||||
Add or remove a set of fences that are registered with the Awareness API.
|
Query the state of a registered fence in the Awareness API.
Parameters | |
---|---|
client |
GoogleApiClient :
A GoogleApiClient instance. |
fenceQueryRequest |
FenceQueryRequest :
A request encapsulating the query criteria
parameters. |
Returns | |
---|---|
PendingResult<FenceQueryResult> |
a PendingResult with a FenceQueryResult .
|
Add or remove a set of fences that are registered with the Awareness API.
Parameters | |
---|---|
client |
GoogleApiClient :
A GoogleApiClient instance. |
fenceUpdateRequest |
FenceUpdateRequest :
A request indicating a batch of fences to add
and/or remove. |
Returns | |
---|---|
PendingResult<Status> |
a PendingResult with Status indicating success
or failure.
|