Hi all! I have function, that does deserialization in a way, that it takes filename and type and returns complete object.
It takes too long to process sequentially couple of files, so i wanted to
parallel calls, because they are not data-tied.
However, I cannot simply spawn ` thread from `threadpool library, because it
says
Error: cannot create a FlowVar of type: *here is my complex type*
Run
How can i bypass this in a graceful way?
