queue icon indicating copy to clipboard operation
queue copied to clipboard

A persistent background job queue for iOS.

Results 8 queue issues
Sort by recently updated
recently updated
newest added

Hi! Have a look please I've updated README accordingly. Idea is: - introduce QueueJob to avoid direct using NSDictinary for creating jobs (plan to add to Job max retry times,...

pr - needs work

Repro steps: ``` // With [EDQueue sharedInstance] stopped [[EDQueue sharedInstance] enqueueWithData:@{"test" : "data"} forTask:@"task"]; [[EDQueue sharedInstance] enqueueWithData:@{"test" : "data"} forTask:@"task2"]; [[EDQueue sharedInstance] start]; ``` Expected: The queue should ask its...

bug

For jobs with networking operations, i think this would be very useful and in these cases the jobs should automatically pause and resume when network is off and on respectively.

This is great, but I think a lots of people like me(who are new) might find it useful if there is a wiki for using it with async http calls...

enhancement

Updated to support OS X by using only Foundation framework. The pod spec was updated as well for support on 10.8 and up. I also added an example project for...

EDQueue doesn't support assigning priorities to jobs. The easiest workaround IMO is multiple queues, where the "low priority" jobs (which are assumed to be more numerous) are put into the...

It would be really useful to expose engine fetchJobCount to the interface

enhancement

Added support to optionally add send a "runAfter" timestamp when creating jobs. This allows for more efficient scheduling of jobs for many purposes, including the one that I'm using it...