Searched defs:Job (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
H A DTaskExecutor.java47 * android.app.job.JobScheduler}, which is between {@link #onStartJob(Job, List)} and {@link
79 interface Job { interface in class:TaskExecutor
82 * Signals to Job to end and release its' resources. This is an asynchronous call and may not
141 private Job job;
158 * Reschedule the {@link TaskSchedulerJobService} and terminate the executor when the {@link Job}
179 VvmLog.i("JobFinishedPoller.run", "Job finished");
188 VvmLog.w("JobFinishedPoller.run", "Job still running");
391 public void onStartJob(Job job, List<Bundle> pendingTasks) {
453 VvmLog.i(TAG, "finishing Job");
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
H A DThreadPool.java43 // A Job is like a Callable, but it has an addition JobContext parameter.
44 public interface Job<T> { interface in class:ThreadPool
97 public <T> Future<T> submit(Job<T> job, FutureListener<T> listener) {
103 public <T> Future<T> submit(Job<T> job) {
110 private Job<T> mJob;
119 public Worker(Job<T> job, FutureListener<T> listener) {
/packages/apps/DocumentsUI/src/com/android/documentsui/services/
H A DJob.java68 abstract public class Job implements Runnable { class in inherits:Runnable
69 private static final String TAG = "Job";
123 Job(Context service, Listener listener, String id, method in class:Job
160 // handled within Job implementations. However, just in case catch them here.
356 .append("Job")
367 void onStart(Job job);
368 void onFinished(Job job);

Completed in 200 milliseconds