-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Moves into a builder function for CLI and controller feat: jobs can be configured with list of strings as well feat: plugin has a get_queues function feat: allow worker to schedule in running event loop
- Loading branch information
Showing
13 changed files
with
343 additions
and
467 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,3 +162,4 @@ cython_debug/ | |
#.idea/ | ||
|
||
.vscode/ | ||
examples/tmp.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,15 @@ | ||
from __future__ import annotations | ||
|
||
from . import controllers, info | ||
from .base import CronJob, Job, Queue, Worker | ||
from .config import QueueConfig, SAQConfig | ||
from .controllers import SAQController | ||
from .plugin import SAQPlugin | ||
|
||
__all__ = [ | ||
__all__ = ( | ||
"SAQPlugin", | ||
"SAQConfig", | ||
"SAQController", | ||
"QueueConfig", | ||
"Queue", | ||
"CronJob", | ||
"Job", | ||
"Worker", | ||
"info", | ||
"controllers", | ||
] | ||
) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.