Add support for starting and stopping a job queue

This commit is contained in:
Roberto Rosario
2012-08-01 16:07:56 -04:00
parent 198a2908d2
commit 7b5a64f434
12 changed files with 207 additions and 42 deletions

View File

@@ -1,14 +1,14 @@
#class WorkerAlreadyDisabled(Exception):
# pass
#class WorkerAlreadyEnabled(Exception):
# pass
class JobQueuePushError(Exception):
pass
class JobQueueNoPendingJobs(Exception):
pass
class JobQueueAlreadyStarted(Exception):
pass
class JobQueueAlreadyStopped(Exception):
pass