This tag is for questions relating to the Concurrency and Coordination Runtime (CCR), provided by Microsoft as part of the Microsoft Robotics Toolkit. Microsoft states that the CCR... addresses the need of service-oriented applications to manage asynchronous operations, deal with concurrency, ...
0
votes
3answers
214 views
F# Mailbox vs MailboxProcessor
I notice the Mailbox type is encapsulated and can only be used through the use of the MailboxProcessor.
It implies that to have an agent to which I can post messages, I'm forced to have a single ...
2
votes
2answers
2k views
Using the CCR with ASynchronous WCF Service
I'm learning how to use the CCR (Concurrency and Coordination Runtime) in conjunction with a Asynchronous WCF Web Service.
This is the Test WCF Service:
public class Service : IService
{
...
2
votes
1answer
897 views
How does CCR & DSS toolkit model compare to other scalability & concurency approaches?
I'm interested to comparison between various approaches to scalability & concurrency including CCR & DSS framework model. I would be especially interested with comparison with Hadoop and ...
1
vote
2answers
190 views
Implement CCR Interleave Arbiter in F#
I want to implement the concept of a Port of the CCR Framework in F# (as CCR is not officially supported for .Net 4.0). I know that one can use the MailboxProcessor class in F# to do this.
This works ...
4
votes
4answers
588 views
How to use CCR, DSS, VPL (aka Microsoft Robotics Development Studio) outside robotics?
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 ...
3
votes
2answers
2k views
Microsoft's CCR vs Task Parallel Library
Microsoft has at least two different approches to improved support for concurrent operations.
1) Is the Concurrency Coordination Runtime (CCR) which is part of Microsoft Robotics Studio and CCR & ...