26 lines
669 B
Python
26 lines
669 B
Python
"""Cloud runtime: multi-host device pool, scheduler, plugins, and public SDK.
|
|
|
|
Sibling to ``agents/``, ``workflow/``, etc. Composes the existing single-process
|
|
capabilities (``device-management``, ``agent-runtime``, ``workflow-orchestration``,
|
|
``driver-registry``) without editing them.
|
|
"""
|
|
|
|
__all__ = [
|
|
"CloudConfig",
|
|
"CloudStore",
|
|
"DevicePool",
|
|
"HostRegistration",
|
|
"PooledDevice",
|
|
"TaskScheduler",
|
|
"ScheduledTask",
|
|
"TaskConstraints",
|
|
"AssignmentStrategy",
|
|
"fifo_match_strategy",
|
|
"TaskDispatcher",
|
|
"Assignment",
|
|
"RemoteDispatchNotSupportedError",
|
|
"PluginManifest",
|
|
"PluginRegistry",
|
|
"DiscoveryResult",
|
|
]
|