Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
2k 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 ...
7
votes
1answer
419 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 ...
7
votes
4answers
758 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 ...
5
votes
4answers
472 views

Is there a .Net equivalent to java.util.concurrent.Executor?

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 suppose I ...
4
votes
1answer
122 views

In .xsl, take a range value like “130-210”, and determine if “86” or “458” is within that numeric range

I'm parsing an .xml file like: <xml> <normalRange>100-200</normalRange> <value>83</value> </xml> In an .xls stylesheet I need to display a value indicating ...
4
votes
4answers
510 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 ...
4
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 & ...
3
votes
1answer
416 views

Async F# vs. CCR framework

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 ...
3
votes
3answers
180 views

batching remote calls (to database or service)

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 Parent{ ...
3
votes
0answers
117 views

How to use PortMode.OptimizedSingleReissueReceiver in an Interleave? (Microsoft CCR)

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 port ...
3
votes
4answers
544 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 ...
3
votes
1answer
316 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
2answers
170 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 ...
2
votes
1answer
169 views

What is an efficent method for in-order processing of events using CCR?

I was experimenting with CCR iterators as a solution to a task that requires parallel processing of tons of data feeds, where the data from each feed needs to be processed in order. None of the feeds ...
2
votes
1answer
67 views

Microsoft Robotics and Sql

I have an issue implementing CCR with SQL. It seems that when I step through my code the updates and inserts I am trying to execute work great. But when I run through my interface without any ...
2
votes
1answer
841 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 ...
2
votes
1answer
257 views

Why does using Causalities in CCR result in memory leaks?

Does anyone have information about using Causalities? I have tried unsuccessfully to use these on my project as they appeared to be causing massive memory loads. Is this unusual? Beyond the normal ...
2
votes
2answers
497 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 using the CCR use the ...
1
vote
3answers
142 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 ...
1
vote
2answers
358 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 ...
1
vote
1answer
157 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 ...
1
vote
1answer
149 views

Setup for MS Robotics Studio on 64 bit WIndows

What is the best way to setup Microsoft Robotics Studio 2.0 on 64 bit Windows Vista? Appearently something needs to be done beyond the default installation to get it to run properly.
1
vote
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 { ...
0
votes
1answer
32 views

Need to export data in CCR format from Java

I'm working in a project which needs to export EHR information in CCR format. I must use Java. The problem that I'm facing is that I can't find an easy way to do it. The better way to do what I'm ...
0
votes
0answers
136 views

Condition Code Register Display Problem

I am confused at how to display condition code register's value on the seven segment display by using DISPAT.Any reply is appreciated.
0
votes
1answer
92 views

Full memory barrier and ExclusiveReceiverGroup

With the following code: var dispatcherQueue = new DispatcherQueue(); long totalSum = 0; Arbiter.Activate( dispatcherQueue, Arbiter.Interleave( new TeardownReceiverGroup(), ...
0
votes
1answer
146 views

Assembly language ccr trouble learing assembly

He gave these questions a. 13 is obviously the largest piece of data in the sample set. After 13 was stored in D0, what was the state of the CCR when another number was compared against it (just ...
0
votes
1answer
88 views

Join on PortSet's in CCR

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); ...
0
votes
1answer
137 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 ...
0
votes
4answers
337 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 ...
0
votes
2answers
671 views

SQLConnection Pooling - Handling InvalidOperationExceptions

I am designing a Highly Concurrent CCR Application in which it is imperative that I DO NOT Block or Send to sleep a Thread. I am hitting SQLConnection Pool issues - Specifically getting ...
0
votes
1answer
507 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. Only it is ...