mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-21 00:40:01 +02:00
updates protocol for additional servers
This commit is contained in:
parent
16b284da45
commit
20a64099a4
@ -46,13 +46,22 @@ class AdditionalServerProtocol(Protocol):
|
|||||||
The hostname or IP address at which the server will be hosted. This could be a
|
The hostname or IP address at which the server will be hosted. This could be a
|
||||||
local address (like '127.0.0.1' for localhost) or a public IP address.
|
local address (like '127.0.0.1' for localhost) or a public IP address.
|
||||||
|
|
||||||
|
state_manager: StateManager
|
||||||
|
The state manager managing the state cache and persistence of the exposed
|
||||||
|
service.
|
||||||
|
|
||||||
**kwargs: Any
|
**kwargs: Any
|
||||||
Any additional parameters required for initializing the server. These parameters
|
Any additional parameters required for initializing the server. These parameters
|
||||||
are specific to the server's implementation.
|
are specific to the server's implementation.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self, service: DataService, port: int, host: str, **kwargs: Any
|
self,
|
||||||
|
service: DataService,
|
||||||
|
port: int,
|
||||||
|
host: str,
|
||||||
|
state_manager: StateManager,
|
||||||
|
**kwargs: Any,
|
||||||
) -> None:
|
) -> None:
|
||||||
...
|
...
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user