Video on multi cores and workers

Are there comprehensive videos on workers and multi cores
Concepts, and XoJo Implementation.

Thanks

do you mean video processing?
what is your intention or goal?

with a worker in a xojo desktop project
the workers are a console app which run parallel and use all the cpu cores.

1 Like

My guess is video training and/or webinars, but not sure.

1 Like

Sounds like he’s asking for a tutorial video on how to use Workers.

2 Likes

Video tutorials covering how to use the multi core worker class.
Not specifically video processing.
how to utilize the worker class to perform routines / or / processes that keep the app window busy, to free up resources.

1 Like

there is a blog about workers

last weekend i used workers in my project,
i could make a video tutorial from a blank project using it.

for simple tasks the usage of Thread should be enough.

i prefer info and tutorials on workers vs threads.

Threads give me problems updating the User Controls, workers, or what i have learned so far do not have that limitation.

Workers have “Helpers” that are the multicore part, they are a separate application and thus cannot update the user interface. The internal mart of the worker is not multicore.

Threads give me problems updating the User Controls

have you an example what your thread or worker method would do?

a thread can send update events to the ui via dictionary data from within Run Method.
a worker can send update events by SendProgress to the ui (Event JobProgressed) via string which can converted back to JsonItem.