MCPcopy Create free account
hub / github.com/nodejs/node-addon-api / ExecutionProgress

Class ExecutionProgress

napi.h:3267–3277  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3265 virtual ~AsyncProgressWorker();
3266
3267 class ExecutionProgress {
3268 friend class AsyncProgressWorker;
3269
3270 public:
3271 void Signal() const;
3272 void Send(const T* data, size_t count) const;
3273
3274 private:
3275 explicit ExecutionProgress(AsyncProgressWorker* worker) : _worker(worker) {}
3276 AsyncProgressWorker* const _worker;
3277 };
3278
3279 void OnWorkProgress(void*) override;
3280

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected