Home
last modified time | relevance | path

Searched refs:executionListener (Results 1 – 1 of 1) sorted by relevance

/frameworks/support/work/workmanager/src/main/java/androidx/work/impl/
DProcessor.java173 public synchronized void addExecutionListener(ExecutionListener executionListener) { in addExecutionListener() argument
175 mOuterListeners.add(executionListener); in addExecutionListener()
183 public synchronized void removeExecutionListener(ExecutionListener executionListener) { in removeExecutionListener() argument
185 mOuterListeners.remove(executionListener); in removeExecutionListener()
199 for (ExecutionListener executionListener : mOuterListeners) { in onExecuted()
200 executionListener.onExecuted(workSpecId, isSuccessful, needsReschedule); in onExecuted()