This does all the processing of the data we receive and we spend our time in this function.
(self)
| 652 | self.send_message(message) |
| 653 | |
| 654 | def handle(self): |
| 655 | ''' |
| 656 | This does all the processing of the data we receive and we spend our |
| 657 | time in this function. |
| 658 | ''' |
| 659 | if self.is_unix_stream: |
| 660 | try: |
| 661 | self.player_handler() |
| 662 | except TimeoutError: |
| 663 | return |
| 664 | else: |
| 665 | self.viewer_handler() |
| 666 | |
| 667 | return ReceiveHandler |
| 668 |
nothing calls this directly
no test coverage detected