We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am getting a the receiver must be a thread object. What excalty does it mean?
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
Sample code, please?
I had a similar issue. You may need to bind your thread to the function you are passing around. Ex:
var t = Thread.create(); promisify(t.load)
to
var t = Thread.create(); promisify(t.load.bind(t))
My guess is webworker-threads is trying to say this is not a thread object in it's functions.
webworker-threads
this
No branches or pull requests
I am getting a the receiver must be a thread object. What excalty does it mean?
The text was updated successfully, but these errors were encountered: