Page Summary
-
The
IListHarmfulAppsCallback.Stub.Proxyclass extendsBaseProxyand implementsIListHarmfulAppsCallback. -
The main public method in this class is
onListHarmfulAppsResult, which is called with the results of thelistHarmfulAppsAPI. -
The
onListHarmfulAppsResultmethod provides a boolean indicating success and a byte array containing the results, or null if there was an error.
implements IListHarmfulAppsCallback
Public Method Summary
| void |
onListHarmfulAppsResult(boolean success, byte[] result)
This will be called with the results of the listHarmfulApps API.
|
Inherited Method Summary
Public Methods
public void onListHarmfulAppsResult (boolean success, byte[] result)
This will be called with the results of the listHarmfulApps API.
Parameters
| success | false if there was an error while getting the list of harmful apps, otherwise true. |
|---|---|
| result | A HarmfulApps protobuf message encoded as a byte array, or null if success is false |
Throws
| RemoteException |
|---|