(self)
| 200 | self.messageLoop() |
| 201 | |
| 202 | def getMsgpackUnpacker(self): |
| 203 | if self.handshake and self.handshake.get("use_bin_type"): |
| 204 | return Msgpack.getUnpacker(fallback=True, decode=False) |
| 205 | else: # Backward compatibility for <0.7.0 |
| 206 | return Msgpack.getUnpacker(fallback=True, decode=True) |
| 207 | |
| 208 | # Message loop for connection |
| 209 | def messageLoop(self): |
no test coverage detected