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

com.path.android.jobqueue.QueueFactory Maven / Gradle / Ivy

package com.path.android.jobqueue;

import android.content.Context;

/**
 * Interface to supply custom {@link JobQueue}s for JobManager
 */
public interface QueueFactory {
    public JobQueue createPersistentQueue(Context context, Long sessionId, String id);
    public JobQueue createNonPersistent(Context context, Long sessionId, String id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy