I'm making a Tauri project and want to have two background processes on top of the Tauri process
Process 1 runs AI inferences infinitely by taking a picture of the screen every frame
Process 2 gets data fed from process 1 (via mpsc::channel) and performs heavy calculations
Both process 1 and 2 are infinite loops and need to run alongside the Tauri UI process
My optimal setup would be:
Tauri processwrites toprocess 1 and 2, and receives data fromprocess 1 and 2Process 1writes toprocess 2
Currently all I have it:
Process 1writes toprocess 2- Tauri does not even run properly 😭 😭
Is what I want to achieve possible?