join() and empty the queue of tasks that may have been waiting to run.
| 87 | |
| 88 | // join() and empty the queue of tasks that may have been waiting to run. |
| 89 | PDAL_EXPORT void stop() |
| 90 | { |
| 91 | join(); |
| 92 | clearTasks(); |
| 93 | } |
| 94 | |
| 95 | // Empty the queue of tasks that may have been waiting to run. |
| 96 | PDAL_EXPORT void clearTasks() |
nothing calls this directly
no test coverage detected