-
Notifications
You must be signed in to change notification settings - Fork 16
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
First Message to isolate getting lost #40
Comments
Yes, |
Hello, How can the main thread know isolate is ready , shall it wait for Isolate to send some message saying I am up |
As the comment in the code says: isolate_handler/lib/src/handled_isolate.dart Lines 58 to 60 in a8bf383
So, either start the communication directly from this handler (the example does so), or if you need a constant way to check for it, use a boolean variable and set it true from this handler. |
Hello,
Is there a way for us to check , that isolate is ready ; I mean one thing i have observed is that Isolate loop , doesnt recv the first message.
I have put in print statements , it never hits.
The text was updated successfully, but these errors were encountered: