Files
uwsgi/contrib/spoolqueue/tasks.py
T
2012-03-07 15:06:38 +01:00

10 lines
191 B
Python

from tasksconsumer import *
@queueconsumer('fast', 4)
def fast_queue(arguments):
print "fast", arguments
@queueconsumer('slow')
def slow_queue(arguments):
print "foobar", arguments