class documentation
Class representing a thread.
| Method | __del__ |
Stop the thread and release its resources. |
| Method | __init__ |
Initialize the thread. |
| Method | run |
Run the thread. |
| Method | stop |
Request the thread to stop. |
| Class Variable | __slots__ |
Undocumented |
| Property | error |
Get the error if any occurred during thread execution. |
| Property | is |
Check if the thread is running. |
| Property | should |
Check if stop was requested. |
| Method | _wrapper |
Run the target function and capture any error. |
| Instance Variable | _args |
Undocumented |
| Instance Variable | _error |
Undocumented |
| Instance Variable | _function |
Undocumented |
| Instance Variable | _lock |
Undocumented |
| Instance Variable | _running |
Undocumented |
| Instance Variable | _stack |
Undocumented |
| Instance Variable | _stop |
Undocumented |