IJobCallbackpublic interface IJobCallback implements android.os.IInterfaceThe server side of the JobScheduler IPC protocols. The app-side implementation
invokes on this interface to indicate completion of the (asynchronous) instructions
issued by the server.
In all cases, the 'who' parameter is the caller's service binder, used to track
which Job Service instance is reporting.
{@hide} |
Methods Summary |
---|
public void | acknowledgeStartMessage(int jobId, boolean ongoing)Immediate callback to the system after sending a start signal, used to quickly detect ANR.
| public void | acknowledgeStopMessage(int jobId, boolean reschedule)Immediate callback to the system after sending a stop signal, used to quickly detect ANR.
| public void | jobFinished(int jobId, boolean reschedule)
|
|