android-priority-jobqueue
android-priority-jobqueue copied to clipboard
A Job Queue specifically written for Android to easily schedule jobs (tasks) that run in the background, improving UX and application stability.
Results
101
android-priority-jobqueue issues
Sort by
recently updated
recently updated
newest added
I'm using it without any scheduler(so I don't use persist job either) with this configuration ```java Configuration.Builder builder = new Configuration.Builder(this) .loadFactor(5) .minConsumerCount(1) .maxConsumerCount(5); mJobManager = new JobManager(builder.build()); ``` on...