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.
1.open the network 2.post the job (the job will onRun but not done) 3.close the network (when execute uploadImage method will exception) 4.open the network 5.the onRun method will execute...
Can I update persist data of already added Job? I found out job by tag but could not able to update job persist data before onRun() method call. Any Suggestion...
I running several jobs in queue and I want to cancel all of the jobs in queue if an exception occur at a stage but it dont cancel the jobs....
Currently (as I understand it) when a Job is queued with a single id and a second Job with the same single id is created, the second job will have...
This library fails when Mobile Iron MDM wrap process is used. has anyone else managed to us an APP with this library with Mobile Iron MDM?
When this is included in my gradle dependency for a Android Library Module (compile 'com.birbit:android-priority-jobqueue:2.0.1'), a gradle sync error pops up...: Error:Execution failed for task ':things:preDebugBuild'. > Android dependency 'com.android.support:support-v4'...
`Non-fatal Exception: android.database.sqlite.SQLiteDatabaseLockedException: database is locked (code 5): , while compiling: PRAGMA journal_mode at android.database.sqlite.SQLiteConnection.nativePrepareStatement(SQLiteConnection.java) at android.database.sqlite.SQLiteConnection.acquirePreparedStatement(SQLiteConnection.java:889) at android.database.sqlite.SQLiteConnection.executeForString(SQLiteConnection.java:634) at android.database.sqlite.SQLiteConnection.setJournalMode(SQLiteConnection.java:320) at android.database.sqlite.SQLiteConnection.setWalModeFromConfiguration(SQLiteConnection.java:294) at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:215) at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:193) at android.database.sqlite.SQLiteConnectionPool.openConnectionLocked(SQLiteConnectionPool.java:463) at...
Hi @yigit We just discovered a crash with android-priority-jobqueue, we'd like to know if it's actually a Library problem or not. Library version: `1.3.5` So we just updated one of...
android.database.sqlite.SQLiteException: no such column: group_id (code 1): , while compiling: SELECT SUM(case WHEN group_id is null then group_cnt else 1 end) from (SELECT count(*) group_cnt, group_id FROM job_holder WHERE running_session_id...
halo @yigit, it's possible for handling Job `onRun'? let's say I have two Job, it's called `FirstJob` and `SecondJob`. `FirstJob` have the Highest priority, I want to execute `SecondJob` when...