I want to create a second thread to host and multiple functions as well as to accept and output messages and data. I tried googling a lot but most examples are either straight copy paste of each other or very low level tutorials.
Asked
Active
Viewed 24 times
0
-
is it related to your previous question? what actually do you want to achieve? – pskink Apr 05 '20 at 17:30
-
@pskink it is related, I am trying to add some parallelism in my app when dealing with the refreshes of the UI when the streams have new values. i think putting the streams and their data in a separate isolate would help with the performance issues. – Kaki Master Of Time Apr 05 '20 at 19:28
-
isolates are useful when you have a looooong running task that otherwise would block main isolate thread, your case is different i suppose? – pskink Apr 05 '20 at 19:31
-
@pskink yeah a little off my needs right now, but I will need it in the very near future since I am adding more features to my app and that would clutter the main thread even more – Kaki Master Of Time Apr 05 '20 at 20:22