AsyncContext¶
Async context for tasks.
AsyncContext
¶
Context associated with asynchronous tasks.
Example¶
from qtasks import QueueTasks
from qtasks.registries import AsyncTask
app = QueueTasks()
@app.task(echo=True)
async def my_task(self: AsyncTask):
self.ctx #AsyncContext
Source code in src/qtasks/contexts/async_context.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | |
generate_handler = kwargs.get('generate_handler')
instance-attribute
¶
Generator function for creating tasks.
task_name = kwargs.get('task_name')
instance-attribute
¶
Task name.
task_uuid = kwargs.get('task_uuid')
instance-attribute
¶
Task UUID.
__init__(**kwargs)
¶
Initializing the context.
Source code in src/qtasks/contexts/async_context.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
cancel(reason='')
¶
Cancels the task.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
reason
|
str
|
Reason for canceling the task. |
''
|
Raises:
| Type | Description |
|---|---|
TaskCancelError
|
The exception thrown when a task is canceled. |
Source code in src/qtasks/contexts/async_context.py
121 122 123 124 125 126 127 128 129 130 131 | |
get_component(name)
¶
Returns the application component by name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Component name. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Application component or None if not found. |
Source code in src/qtasks/contexts/async_context.py
142 143 144 145 146 147 148 149 150 151 152 | |
get_config()
¶
Returns the application configuration.
Returns:
QueueConfig: Application configuration.
Source code in src/qtasks/contexts/async_context.py
69 70 71 72 73 74 75 76 | |
get_logger(name=None)
¶
Returns a logger for the current context.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str | None
|
Logger name. If not specified, the task name or |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Logger |
Logger
|
Logger for the current context. |
Source code in src/qtasks/contexts/async_context.py
56 57 58 59 60 61 62 63 64 65 66 67 | |
get_metadata(cache=True)
async
¶
Returns task metadata.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cache
|
bool
|
Use cached metadata. |
True
|
Returns:
| Type | Description |
|---|---|
Union[Task, None]
|
Task|None: Task metadata or None if not found. |
Raises:
| Type | Description |
|---|---|
ValueError
|
Task UUID is not set. |
Source code in src/qtasks/contexts/async_context.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | |
get_task(uuid)
async
¶
Returns the task by UUID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
uuid
|
UUID | str
|
UUID of the task. |
required |
Returns:
| Type | Description |
|---|---|
Union[Task, None]
|
Task|None: Task or None if not found. |
Source code in src/qtasks/contexts/async_context.py
100 101 102 103 104 105 106 107 108 109 110 | |
plugin_error(**kwargs)
¶
Causes a plugin error.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**kwargs
|
Arguments to pass to the plugin error handler. |
{}
|
Source code in src/qtasks/contexts/async_context.py
133 134 135 136 137 138 139 140 | |
sleep(seconds)
async
¶
Pauses execution for the specified number of seconds.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seconds
|
float
|
Number of seconds to pause. |
required |
Source code in src/qtasks/contexts/async_context.py
112 113 114 115 116 117 118 119 | |