updates Server docstring

This commit is contained in:
Mose Müller 2023-12-19 11:44:50 +01:00
parent 36a8e916f6
commit bb4de988e9

View File

@ -78,13 +78,12 @@ class Server:
""" """
The `Server` class provides a flexible server implementation for the `DataService`. The `Server` class provides a flexible server implementation for the `DataService`.
Parameters: Args:
-----------
service: DataService service: DataService
The DataService instance that this server will manage. The DataService instance that this server will manage.
host: str host: str
The host address for the server. Default is '0.0.0.0', which means all available The host address for the server. Default is '0.0.0.0', which means all
network interfaces. available network interfaces.
rpc_port: int rpc_port: int
The port number for the RPC server. Default is 18871. The port number for the RPC server. Default is 18871.
web_port: int web_port: int
@ -98,13 +97,12 @@ class Server:
use_forking_server: bool use_forking_server: bool
Whether to use ForkingServer for multiprocessing. Default is False. Whether to use ForkingServer for multiprocessing. Default is False.
additional_servers : list[AdditionalServer] additional_servers : list[AdditionalServer]
A list of additional servers to run alongside the main server. Each entry in the A list of additional servers to run alongside the main server. Each entry in
list should be a dictionary with the following structure: the list should be a dictionary with the following structure:
- server: A class that adheres to the AdditionalServerProtocol. This class - server: A class that adheres to the AdditionalServerProtocol. This class
should have an `__init__` method that accepts the DataService instance, should have an `__init__` method that accepts the DataService instance,
port, host, and optional keyword arguments, and a `serve` method that is a port, host, and optional keyword arguments, and a `serve` method that is
coroutine responsible for starting the server. a coroutine responsible for starting the server.
- port: The port on which the additional server will be running. - port: The port on which the additional server will be running.
- kwargs: A dictionary containing additional keyword arguments that will be - kwargs: A dictionary containing additional keyword arguments that will be
passed to the server's `__init__` method. passed to the server's `__init__` method.
@ -115,14 +113,14 @@ class Server:
>>> class MyCustomServer: >>> class MyCustomServer:
... def __init__( ... def __init__(
... self, ... self,
... service: DataService, ... data_service_observer: DataServiceObserver,
... port: int,
... host: str, ... host: str,
... state_manager: StateManager, ... port: int,
... **kwargs: Any ... **kwargs: Any,
... ): ... ) -> None:
... self.service = service ... self.observer = data_service_observer
... self.state_manager = state_manager ... self.state_manager = self.observer.state_manager
... self.service = self.state_manager.service
... self.port = port ... self.port = port
... self.host = host ... self.host = host
... # handle any additional arguments... ... # handle any additional arguments...
@ -130,8 +128,8 @@ class Server:
... async def serve(self): ... async def serve(self):
... # code to start the server... ... # code to start the server...
And here's how you might add it to the `additional_servers` list when creating a And here's how you might add it to the `additional_servers` list when creating
`Server` instance: a `Server` instance:
>>> server = Server( >>> server = Server(
... service=my_data_service, ... service=my_data_service,