Multithreading on actionflow-level
690
Views
1
Comments
On our RadarOn our Radar
Backend

Sometimes you need to wait on external resources, before the action flow can continue. This can take some time. Creating a new thread to call such a resource (while having the original thread continue with the action flow) would be a good solution to this problem.


Lets just request a BackgroundWorker like Microsoft already provided... multi-threading per-se can be quite tricky to maintain or manage and its quite error prone to the less experienced developer.

For a streamlined software factory like this one it would be more coherent to provide a single component which ran an action encapsulated in a thread.