Я создал рабочий поток в моем коде JavaScript. Я пытаюсь вызвать функцию C ++ из потока, используя node-gyp и V8. Но я не могу заставить его работать.
Вот код для hello.cc
#include <v8.h>
using namespace v8;
extern std::string myhello();
Handle<Value> Method(const Arguments& args) {
HandleScope scope;
return scope.Close(String::New("hello"));
}
void init(Handle<Object> exports) {
exports->Set(String::NewSymbol("hello"),
FunctionTemplate::New(Method)->GetFunction()
);
}
NODE_MODULE(hello, init)
А вот код для myhello.js
var addon = require('./build/Release/hello');
var thread = require('webworker-threads');
var t = thread.create();
console.log(t.eval("addon.hello()"));
Когда я бегу node myhello.js
Я получаю следующий вывод
{ id: 0,
eval: [Function: eval],
load: [Function: load],
emit: [Function: emit],
emitSerialized: [Function: emitSerialized],
destroy: [Function: destroy],
on: [Function],
once: [Function],
removeAllListeners: [Function],
dispatchEvents: [Function],
_on: {} }
Я ожидаю, что «привет» будет напечатан на консоли.
Ценю любую помощь или указатели.
Я вижу 2 вопроса:
Других решений пока нет …