I am trying to implement an audio module for nodejs which involves a neural network.
This neural network has 2 types of nodes
- Pure C++
- C++ based on JAVASCRIPT ( which involves calling a javascript function )
As far as i know its not possible to call any function which involves v8 from a different thread. And if i return to the main thread i will lose my traverse in the neural network.
How to implement a call to a function in the main thread from a different thread?