Sends a message that a new process has been created.
(self)
| 2025 | self.process_internal_commands() |
| 2026 | |
| 2027 | def send_process_created_message(self): |
| 2028 | """Sends a message that a new process has been created.""" |
| 2029 | if self.writer is None or self.cmd_factory is None: |
| 2030 | return |
| 2031 | cmd = self.cmd_factory.make_process_created_message() |
| 2032 | self.writer.add_command(cmd) |
| 2033 | |
| 2034 | def send_process_about_to_be_replaced(self): |
| 2035 | """Sends a message that a new process has been created.""" |
no test coverage detected