| 6710 | |
| 6711 | template <typename DataType> |
| 6712 | inline AsyncProgressWorkerBase<DataType>::~AsyncProgressWorkerBase() { |
| 6713 | // Abort pending tsfn call. |
| 6714 | // Don't send progress events after we've already completed. |
| 6715 | // It's ok to call ThreadSafeFunction::Abort and ThreadSafeFunction::Release |
| 6716 | // duplicated. |
| 6717 | _tsfn.Abort(); |
| 6718 | } |
| 6719 | |
| 6720 | template <typename DataType> |
| 6721 | inline void AsyncProgressWorkerBase<DataType>::OnAsyncWorkProgress( |