Wait for the script thread to finish, if it is running.
(self)
| 111 | file_mgr.add_file(self._session_id, file_rec) |
| 112 | |
| 113 | def join(self) -> None: |
| 114 | """Wait for the script thread to finish, if it is running.""" |
| 115 | if self._script_thread is not None: |
| 116 | self._script_thread.join() |
| 117 | |
| 118 | def forward_msgs(self) -> list[ForwardMsg]: |
| 119 | """Return all messages in our ForwardMsgQueue.""" |
no outgoing calls