StoppableThread
All pybert threads that support stop or abort derive from this class.
Bases: Thread
Thread
Thread class with a stop() method.
stop()
The thread itself has to check regularly for the stopped() condition.
stopped()
All PyBERT thread classes are subclasses of this class.
Called by thread invoker, when thread should be stopped prematurely.
Should be called by thread (i.e. - subclass) periodically and, if this function returns True, thread should clean itself up and quit ASAP.