mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-15 18:05:50 +00:00
12 lines
205 B
Python
12 lines
205 B
Python
from tasksconsumer import queueconsumer
|
|
|
|
|
|
@queueconsumer('fast', 4)
|
|
def fast_queue(arguments):
|
|
print "fast", arguments
|
|
|
|
|
|
@queueconsumer('slow')
|
|
def slow_queue(arguments):
|
|
print "foobar", arguments
|