Split out customization of Mode into _custom() functions, and implement those customizations in ShareMode

This commit is contained in:
Micah Lee 2018-04-25 22:59:26 -07:00
parent f59fc79939
commit a24bb75b66
5 changed files with 254 additions and 161 deletions

View file

@ -44,3 +44,10 @@ class ReceiveMode(Mode):
This method is called regularly on a timer while receive mode is active.
"""
pass
def start_server_step2_custom(self):
"""
Step 2 in starting the server. Nothing to do here but move on to step 3.
"""
self.starting_server_step3.emit()
self.start_server_finished.emit()