Make PipeIOServer API more consistent with clients

This commit is contained in:
Kristóf Tóth
2019-04-17 14:10:47 +02:00
parent d12c9807f5
commit 024204e439
3 changed files with 8 additions and 8 deletions

View File

@ -37,7 +37,7 @@ class PipeIOServer(ABC, Thread):
def handle_message(self, message):
raise NotImplementedError()
def send(self, message):
def send_message(self, message):
self._writer_thread.write(message)
@terminate_process_on_failure