MCPcopy Create free account
hub / github.com/SySS-Research/hallucinate / JavaAgentServer

Class JavaAgentServer

hallucinate/java.py:68–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66
67
68class JavaAgentServer(socketserver.ThreadingMixIn, socketserver.TCPServer):
69 allow_reuse_address = True
70 block_on_close = False
71
72 def __init__(self, host, port, handler, key):
73 super(JavaAgentServer, self).__init__((host, port), JavaAgentHandler)
74 self.handler = handler
75 self.key = key
76
77
78def test_handler(r, rhandle):

Callers 1

start_serverFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected