| 6719 | |
| 6720 | template <typename DataType> |
| 6721 | inline void AsyncProgressWorkerBase<DataType>::OnAsyncWorkProgress( |
| 6722 | Napi::Env /* env */, Napi::Function /* jsCallback */, void* data) { |
| 6723 | ThreadSafeData* tsd = static_cast<ThreadSafeData*>(data); |
| 6724 | tsd->asyncprogressworker()->OnWorkProgress(tsd->data()); |
| 6725 | delete tsd; |
| 6726 | } |
| 6727 | |
| 6728 | template <typename DataType> |
| 6729 | inline napi_status AsyncProgressWorkerBase<DataType>::NonBlockingCall( |
nothing calls this directly
no test coverage detected