gateway/modules/serviceCenter/services/serviceBackgroundJobs/__init__.py
ValueOn AG 48c0f900af rag
2026-05-12 15:19:01 +02:00

25 lines
540 B
Python

# Copyright (c) 2025 Patrick Motsch
# All rights reserved.
"""Background job service: generic, reusable infrastructure for long-running tasks."""
from .mainBackgroundJobService import (
registerJobHandler,
startJob,
getJobStatus,
listJobs,
cancelJob,
cancelJobsByConnection,
isTerminalStatus,
JobProgressCallback,
)
__all__ = [
"registerJobHandler",
"startJob",
"getJobStatus",
"listJobs",
"cancelJob",
"cancelJobsByConnection",
"isTerminalStatus",
"JobProgressCallback",
]