(self, methodId, sequence, codec)
| 20 | return self._id |
| 21 | |
| 22 | def handle_invocation(self, methodId, sequence, codec): |
| 23 | try: |
| 24 | self._methods[methodId](sequence, codec) |
| 25 | except Exception as e: |
| 26 | raise RequestError( |
| 27 | "invalid method ID (%d) or method implementation: %s" % (methodId, str(e))) |
| 28 | |
| 29 | |
| 30 | class Server(object): |
no test coverage detected