Inter-Process Communication¶
Class Description¶
-
class
server.ipc.IPC¶ Inter-process communication for server and client. This class is used to exchange data between the test server runtime and clients like user interfaces such as CLI and WebServer.
-
get_server_proxy() → server.serverproxy.ServerProxy¶ Returns a proxy model for the test server
-
start_ipc_server(server, serve_forever: bool=False)¶ Start the ipc server to allow clients to connect
Parameters: - server – The running test server to represent
- serve_forever – The true, the statement is blocking until the shutdown() method was called
-