This method is called the the thread or process is started, to initialize any resources that is only held in the thread or process.
(self)
| 179 | super().__init__(running_as, 0, out_buffer_size) |
| 180 | |
| 181 | def init(self) -> None: |
| 182 | """ |
| 183 | This method is called the the thread or process is started, to initialize any resources that is only held in the thread or process. |
| 184 | """ |
| 185 | pass |
| 186 | |
| 187 | @abstractmethod |
| 188 | def provide(self) -> Generator[Any, None, None]: |