/
githubmirror
/
UFO
Обзор
Документация
Войти
/
githubmirror
/
UFO
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
galaxy/client/components/__init__.py
32 строки
1 KB
vyokky
rm event manager
24 окт 2025, 07:28
24 окт 2025, 07:28
fbd5f5a
Код
Авторство
О чём код?
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. """ Device Manager Components This package contains the modular components that make up the Constellation Device Manager: - DeviceRegistry: Device registration and information management - WebSocketConnectionManager: WebSocket connection management - HeartbeatManager: Device health monitoring - MessageProcessor: Message handling and routing - TaskQueueManager: Task queuing and scheduling """ from .types import DeviceStatus, AgentProfile, TaskRequest, DeviceEventHandler from .device_registry import DeviceRegistry from .connection_manager import WebSocketConnectionManager from .heartbeat_manager import HeartbeatManager from .message_processor import MessageProcessor from .task_queue_manager import TaskQueueManager __all__ = [ "DeviceStatus", "AgentProfile", "TaskRequest", "DeviceEventHandler", "DeviceRegistry", "WebSocketConnectionManager", "HeartbeatManager", "MessageProcessor", "TaskQueueManager", ]