I was looking for a reusable runtime conveyor library in C ++ (task scheduler library?). I could not find anything in Boost . Therefore, in the end, I discovered two candidates:
Are there any other candidates? Has anyone used them? How good are they for concurrency and multithreading? These libraries seem to be missing dependency processing. For example, it doesn't seem clear to me how to write something like:
$ cat /dev/urandom | tr P Q | head -3
In this very simple case, the conveyor goes from bottom to top, and the first catstops execution when the process headstops pulling.
However, I don't see how I can benefit from io multithreading and concurrency in the case, for example:
$ cat /raid1/file1 /raid2/file2 | tr P Q > /tmp/file3
: tr 7 , 8 .