Initial json server implementation
Completed the initial implementation of the JsonServer class, handling the worker thread that runs the async task, as well as the connection handler callback The current handler awaits readline to cleanly exit when the connection is closed, no data ingress is happening yet Next steps include gating the start procedure to wait for everything to start proprerly in order to avoid having start exit early and async tasks crashing later
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
# Copyright (C) 2026 Hector van der Aa <hector@h3cx.dev>
|
||||
# Copyright (C) 2026 Association Exergie <association.exergie@gmail.com>
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from dynalab_core.protocols.json.common import VersionDescriptor
|
||||
|
||||
|
||||
CORE_VERSION = VersionDescriptor(type="alpha", major=0, minor=0, patch=1)
|
||||
Reference in New Issue
Block a user