Is there an alternative to C# TPL Dataflow for C++? -


i posted question on using delegates simulate connected objects received great answer on using tpl dataflow library , cleanly develop solution application.

the problem stuck on .net 3.5 or under c#. thought might have been able upgrade .net 4.5 cannot @ stage. far i've been able determine cannot retarget dataflow library .net 3.5 next solution c++ alternative under similar vein of tpl dataflow - not best scenario can compile c++ code dll , import our c# application.

to summarize requirements c++ library question:

  • i need able connect nodes in complex networks , pass units of resource between them. of them produce finite amounts of resource on time. others consume @ specific rate.

you might consider using mono's version of tpl dataflow , compiling .net 3.5.

i think biggest problem you'll encounter when trying compile code relies heavily on tpl, not available .net 3.5. it seems backported version available in older versions of rx, using work.

(also, parts of mono's version of tdf written me , didn't receive pretty feedback it, it's quite there bugs in there.)


Comments

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

java Extracting Zip file -

C# WinForm - loading screen -