3
votes
3answers
110 views
batching remote calls (to database or service)
Hi all,
Hope some of you can give some pointers on this one.
I generate code where i have to make calls to remote resources like webservices or databases.
Consider this piece of code
class …
4
votes
3answers
252 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 frequently for …
3
votes
4answers
236 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 a task posting data …
1
vote
0answers
23 views
How to use PortMode.OptimizedSingleReissueReceiver in an Interleave? (Microsoft CCR)
Hi,
I have read a post on the Microsoft CCR forum on reducing the overhead of calls to Port.Post() [ref.: PortElement Instantiation in the CCR] and I was wondering if there is a similar way to bind a …
1
vote
2answers
147 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 able to abort the …
10
votes
3answers
844 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 quite difficult.
(A …
0
votes
1answer
65 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 …
4
votes
4answers
218 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 implementing this in Java, I …
0
votes
4answers
135 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 using the default …
2
votes
1answer
204 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 => callback(this));
instead …
2
votes
1answer
413 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 …
4
votes
0answers
97 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, Exception> for …
1
vote
1answer
515 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 & …
1
vote
2answers
953 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
{
…
0
votes
1answer
71 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 function after the …
