NAPI_EXTERN napi_statusnapi_call_threadsafe_function(napi_threadsafe_function func,void* data,napi_threadsafe_function_call_mode is_blocking);
[in] func: The asynchronous thread-safe JavaScript function to invoke.[in] data: Data to send into JavaScript via the callbackcall_js_cbprovided during the creation of the thread-safe JavaScript function.[in] is_blocking: Flag whose value can be eithernapi_tsfn_blockingto indicate that the call should block if the queue is full ornapi_tsfn_nonblockingto indicate that the call should return immediately with a status ofnapi_queue_fullwhenever the queue is full.
This API should not be called with napi_tsfn_blocking from a JavaScript
thread, because, if the queue is full, it may cause the JavaScript thread to
deadlock.
This API will return napi_closing if napi_release_threadsafe_function() was
called with abort set to napi_tsfn_abort from any thread. The value is only
added to the queue if the API returns napi_ok.
This API may be called from any thread which makes use of func.
