Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upIs it possible to initialize a UJavascriptContext not on the Main thread? #259
Comments
This comment has been minimized.
This comment has been minimized.
Have you created multiple isolates in the main thread? |
This comment has been minimized.
This comment has been minimized.
I'm currently only working with the one isolate at the moment. I added more information about my set-up in the initial question. |
This comment has been minimized.
This comment has been minimized.
There might be some pieces of code which run on main thread to process timer things and so on. If you want to tick your isolate within other threads, I think the codes I mentioned should be guarded or off-loaded to other threads for thread safety. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm not initializing the UJavascriptContext when the game begins. I am starting it on a trigger (Such as a user touching a block). Doing this I've noticed a large pause of about 1-2 seconds when calling the below code. I've tried to initialize the Context in a thread and pass it back to the main thread when it's finished but that causes an Access violation error. The code runs fine in the main thread.
The chunk of code I'm testing with:
Is there a way to do this properly?
My current set-up:
I started a fresh project using the C++ First Person Template. I have added a single custom class (Source Code below). I attach this class to a cube with a contact trigger. When triggered the custom class calls LoadJSIsolate(). There is a boolean to toggle between loading on the main thread and loading on a secondary thread. When run on the main thread, everything works. When running in a secondary thread it throws an Access violation error:
Code:
Spell.h
Spell.cpp