(channel, message_dict)
| 688 | |
| 689 | @staticmethod |
| 690 | def _parse(channel, message_dict): |
| 691 | seq = message_dict("seq", int) |
| 692 | command = message_dict("command", str) |
| 693 | arguments = message_dict("arguments", _payload) |
| 694 | message = Request(channel, seq, command, arguments, json=message_dict) |
| 695 | channel._enqueue_handlers(message, message._handle) |
| 696 | |
| 697 | def _handle(self): |
| 698 | channel = self.channel |
nothing calls this directly
no test coverage detected