| 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()
| 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.
| client | A GoogleApiClient instance. |
|---|---|
| fenceQueryRequest | A request encapsulating the query criteria parameters. |
PendingResult with a FenceQueryResult.
Add or remove a set of fences that are registered with the Awareness API.
| client | A GoogleApiClient instance. |
|---|---|
| fenceUpdateRequest | A request indicating a batch of fences to add and/or remove. |
PendingResult with Status indicating success
or failure.