3
votes
4answers
204 views
Interthread communication time
I am chaining together 15 async operations through ports and receivers. This has left me very concerned with the interthread messaging time, specifically the time it takes between …
1
vote
2answers
118 views
How do I abort CCR threads\tasks?
I want to implement a timeout on the execution of tasks in a project that uses the CCR. Basically when I post an item to a Port or enqueue a Task to a DispatcherQueue I want to be …
2
votes
2answers
167 views
Is Microsoft CCR gaining any traction?
Microsoft's Concurrency and Coordination Runtime quite literally saved a project that was running into major issues with deadlocking. Since then I find that I use it more and more …
0
votes
1answer
44 views
Why does C# say that the CCR’s IterativeTask is non-generic?
I'm using the Concurrency and Coordination Runtime and am writing code similar to what is described in the documentation. The following line fails to compile:
yield return new Ite …
4
votes
4answers
184 views
Is there a .Net equivalent to java.util.concurrent.Executor ?
Hello,
Have a long running set of discrete tasks: parsing 10s of thousands of lines from a text file, hydrating into objects, manipulating, and persisting.
If I were implementin …
2
votes
1answer
171 views
Question about CCR and WCF integration
Regardind this solution http://stackoverflow.com/questions/494463/using-the-ccr-with-asynchronous-wcf-service
Why do you need to do this :
ThreadPool.QueueUserWorkItem(s => callb …
2
votes
0answers
56 views
CCR: Best practice for handling errors using causalities
Having a complex sequence of tasks, implementing error handling can quickly bloat the code when using try/catch blocks and stuff like Choice receivers on PortSet<ActualResult, E …
2
votes
1answer
320 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 w …
1
vote
1answer
382 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 …
9
votes
3answers
738 views
Concurrency and Coordination Runtime (CCR) Learning Resources
I have recently been learning the in's and out's of the Concurrency and Coordination Runtime (CCR).
Finding good learning resources for this relatively new technology has been quit …
0
votes
1answer
55 views
how can i pass a parameter to EnqueueTimer in the .net ccr
Unclear if there are ccr gurus here but let's try anyway.
I have this function in my code:
dq.EnqueueTimer(TimeSpan.FromMilliseconds(TIMEOUT), timeOutFn);
which will call my fu …
1
vote
2answers
754 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 …
0
votes
4answers
116 views
Detecting Blocked Threads
I have a theory regarding trouble shooting a Asynchronous Application (I'm using the CCR) and I wonder if someone can confirm my logic.
If a CCR based multi-threaded application u …
0
votes
1answer
195 views
Asynchronous SQLCommand and CCR
I have been playing with the demo code from this msdn article by Jeffrey Richter.
I have added a new function to his ApmToCcrAdapters to handle the SqlCommand.BeginExecuteReader …
1
vote
2answers
236 views
CCR, Yield and VB.net
I've been trying to get my head around the CCR (Concurrency And Coordination Runtime) to see if it is worth learning.
I program mostly in Vb.net and in most of the examples of u …
