No project description provided
Project description
camunda-client
This package includes clients such as CamundaEngineClient and ExternalTaskClient
In addition, there is an ExternalTaskWorker for working with ExternalTask
Installing
pip
pip install camunda-client
pdm
pdm add camunda-client
ExternalTask functional usage
Source code in examples/external_task
from camunda_client.worker import ExternalTaskWorker
from .enums import WorkerEnum
async def subscribe(
topic: str,
task_worker: ExternalTaskWorker,
) -> None:
mapping = WorkerEnum.workers()
async with task_worker.subscribe(topic) as task_contexts:
async for task_context in task_contexts:
async with task_context as task_dto:
worker_cls = mapping[task_dto.topic_name]
# Resolve the dependency on the DI container.
# This initialization is provided as an example.
worker = worker_cls()
result = await worker.execute(task_dto)
if result.is_success is False:
print(f"Task with id {task_dto.id} was failed")
await task_context.fail(error_message=result.message)
else:
print(f"Task with id {task_dto.id} was completed")
await task_context.complete()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
camunda_client-0.4.9.tar.gz
(16.5 kB
view hashes)
Built Distribution
Close
Hashes for camunda_client-0.4.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1a5db48208e63f3970f14e00ea2457d213a20ab47725beb7e30299a121b1dc4 |
|
MD5 | 4611bf7f64bceba7ab3338d4cc68b001 |
|
BLAKE2b-256 | 6a30b88ad04ea2c71d94823b79fb2a9bc8a25750bc6c5b6b22a521d7c50f45a4 |