Ask a thread to stop running.
| 82 | |
| 83 | /// Ask a thread to stop running. |
| 84 | void stop() |
| 85 | { |
| 86 | shouldStop = true; |
| 87 | } |
| 88 | |
| 89 | /// Block until the thread stops running. |
| 90 | /// @note Don't use this in combination with auto-deletion as otherwise the thread will kill |