Concept Flow - Passing data to workers
Main thread starts
Create Worker
Send data to Worker
Worker receives data
Worker processes data
Worker sends result back
Main thread receives result
Main thread continues
The main thread creates a worker, sends data to it, the worker processes the data and sends back the result, which the main thread receives.
