-
Notifications
You must be signed in to change notification settings - Fork 567
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
Read data from an other thread #2390
Comments
There is no convenient way to directly read data from another thread. What you could do though is send a |
IIRC when I was writing https://github.com/ratmice/neewerctl/blob/main/src/main.rs it uses the There are examples of both these approaches in the repository |
Alr I'll try that thanks for the response. |
Hello, I'm learning how to use Druid and I can't find a way of reading the app data from an external thread. I'm looking for something like
let data_reader = launcher.get_external_reader(); let data: AppData = data_reader.get_data()
.Thanks for your time.
The text was updated successfully, but these errors were encountered: