-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
How to wait for the runtime to be ready? #110
Comments
I can use |
Better: ready <- session$Runtime$evaluate("UI.ready")$result$value
while(!ready) {
ready <- session$Runtime$evaluate("UI.ready")$result$value
} |
Hi @stla, I'm fairly certain you're running into issues resulting from On the whole, it seems like you've solved this, but if not please feel free to re-open the issue with a new comment. |
This is some C code compiled in JavaScript. I don't remember the name. |
Hello,
I have the code below. When I extract all the code from the functions and I run it, this works. But when I run these functions and the example at the end, I get: Assertion failed: you need to wait for the runtime to be ready. How could I wait for the runtime to be ready?
The text was updated successfully, but these errors were encountered: