Added `wait_stop` and `shoud_stop` methods to `StoppableThread`.

This commit is contained in:
Fabio Manganiello 2023-03-24 16:05:18 +01:00
parent 998793e94f
commit 5ebf4e912e
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 28 additions and 4 deletions

View File

@ -1,5 +1,6 @@
from abc import ABC, abstractmethod
from threading import Thread
from abc import ABC
from threading import Event, Thread
from typing import Optional
class StoppableThread(Thread, ABC):
@ -7,6 +8,29 @@ class StoppableThread(Thread, ABC):
Base interface for stoppable threads.
"""
@abstractmethod
def __init__(self, *args, stop_event: Optional[Event] = None, **kwargs):
"""
:param stop_event: Event used to signal the thread to stop.
"""
super().__init__(*args, **kwargs)
self._stop_event = stop_event or Event()
def should_stop(self) -> bool:
"""
:return: ``True`` if the thread should be stopped, ``False`` otherwise.
"""
return self._stop_event.is_set()
def wait_stop(self, timeout: Optional[float] = None):
"""
Wait for the stop event to be set.
:param timeout: Timeout in seconds (default: no timeout).
"""
self._stop_event.wait(timeout)
def stop(self):
...
"""
Signal the thread to stop by setting the stop event.
"""
self._stop_event.set()