mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
10 lines
191 B
Python
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
|