(self, host, port)
| 126 | """Client for sending SQL commands to renderer via ZeroMQ REQ socket""" |
| 127 | |
| 128 | def __init__(self, host, port): |
| 129 | self.host = host |
| 130 | self.port = port |
| 131 | self.context = zmq.Context() |
| 132 | self.socket = None |
| 133 | |
| 134 | def connect(self): |
| 135 | """Connect to the renderer's REP socket""" |
nothing calls this directly
no outgoing calls
no test coverage detected