You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the delay() function accepts a function name (eg tiger.delay(tasks.my_task, ...)), which means that the submitter must have visibility into the worker code. Other task queue systems allow submitting tasks by passing a string representing the function to call, eg
tiger.delay('tasks.my_task', ...)
this decouples the submitter from the worker. Is something like this possible with tasktiger?
The text was updated successfully, but these errors were encountered:
Currently, the
delay()
function accepts a function name (egtiger.delay(tasks.my_task, ...)
), which means that the submitter must have visibility into the worker code. Other task queue systems allow submitting tasks by passing a string representing the function to call, egthis decouples the submitter from the worker. Is something like this possible with tasktiger?
The text was updated successfully, but these errors were encountered: