All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.path.android.jobqueue.di.DependencyInjector Maven / Gradle / Ivy

Go to download

a Job Queue specifically written for Android to easily schedule jobs (tasks) that run in the background, improving UX and application stability.

There is a newer version: 1.1.2
Show newest version
package com.path.android.jobqueue.di;

import com.path.android.jobqueue.BaseJob;

/**
 * interface that can be provided to {@link com.path.android.jobqueue.JobManager} for dependency injection
 * it is called before the job's onAdded method is called. for persistent jobs, also run after job is brought
 * back from disk.
 */
public interface DependencyInjector {
    public void inject(BaseJob job);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy