move_by_idmap
Move tasks by matching from a task_id: queue mapping.
def move_by_idmap(
map: dict,
**kwargs: dict
) - > Any
Move tasks by matching from a task_id: queue mapping. Where queue is a queue to move the task to.
Parameters
| Name | Type | Description |
|---|---|---|
| map | dict | A dictionary mapping specific task correlation IDs to their target Queue objects. |
| **kwargs | dict | Additional keyword arguments passed to the underlying move function, such as source queue names or transformation callbacks. |
Returns
| Type | Description |
|---|---|
Any | The result of the underlying move operation, typically indicating the number of tasks successfully relocated. |