After reading about CCR : http://www.infoq.com/news/2008/12/CCR
I get the impression that it does pretty much exactly the same as F# async blocks?
You yield port.Receive and port.Test in order to do the same as "let!".
Is this correct?
And are there any benefits in CCR that you don't get with F# async?
...
How to use CCR, DSS, VPL (aka Microsoft Robotics Development Studio) outside robotics?
I am looking for guidance in this field. I have tried all the examples and find the framework intriguing.
Can anyone post other uses and examples, outside robotics?
PS. I am looking for someone to explain some of the more complex stuff to me. I have...
Hi guys,
I have 4 services, each has a method with the signature like this:
PortSet<Response1, Exception> GetData1(Request1 request);
PortSet<Response2, Exception> GetData2(Request2 request);
PortSet<Response3, Exception> GetData3(Request3 request);
PortSet<Response4, Exception> GetData4(Request4 request);
I need to run them concurre...