Tagged Questions

The Task Parallel Library is part of .NET 4. It is a set of APIs to enable developers to program multicore shared memory processors.

learn more… | top users | synonyms (1)

28
votes
2answers
3k views

Reactive Framework vs PLINQ vs Task Parallel Library vs Parallel Extensions [closed]

In a few words, can anyone set the record straight what is what? Does this all end up in .NET 4.0 ?
24
votes
3answers
1k views

Is it considered acceptable to not call Dispose() on a TPL Task object?

I want to trigger a task to run on a background thread. I don't want to wait on the tasks completion. In .net 3.5 I would have done this: ThreadPool.QueueUserWorkItem(d => { DoSomething(); }); ...
23
votes
6answers
4k views

How does C# 5.0's async-await feature differ from the TPL?

I don't see the different between C#'s (and VB's) new async features, and .NET 4.0's Task Parallel Library. Take, for example, Eric Lippert's code from here: async void ...
21
votes
2answers
3k views

Parallel.ForEach vs Task.Factory.StartNew

What is the difference between the below code snippets? Won't both be using threadpool threads? For instance if I want to call a function for each item in a collection, ...
20
votes
3answers
2k views

Cancellation token in Task constructor: why?

Certain System.Threading.Tasks.Task constructors take a CancellationToken as a parameter: CancellationTokenSource source = new CancellationTokenSource(); Task t = new Task (/* method */, ...
18
votes
6answers
917 views

Launching multiple tasks from a WCF service

I need to optimize a WCF service... it's quite a complex thing. My problem this time has to do with tasks (Task Parallel Library, .NET 4.0). What happens is that I launch several tasks when the ...
16
votes
4answers
331 views

Are you using Parallel Extensions?

I hope this is not a misuse of stackoverflow; recently I've seen some great questions here on Parallel Extensions, and it got my interest piqued. My question: Are you using Parallel Extensions, and ...
16
votes
2answers
4k views

Can I use the task parallel library in a .Net 3.5 project?

I heard that the Task Parallel Library can be used in a .Net 3.5 project. Is this correct, and if yes, how do I use it? In .Net 4.0, it resides in System.Threading, but when I select .Net 3.5 as the ...
14
votes
2answers
379 views

How to make a WCF REST method entirely asynchronous with the Task Parallel Library?

I am trying to make a WCF REST method entirely asynchronous (I don't want to block anywhere). Essentially I have a simple service with 3 layers: Service, Business Logic and Data Access Layer. The Data ...
14
votes
4answers
392 views

How to walk the .NET try/catch chain to decide to generate a minidump

We've hit a snag mixing Tasks with our top-level crash handler and are trying to find a workaround. I'm hoping someone has some ideas. Our tools have a top-level crash handler (from the AppDomain's ...
14
votes
2answers
3k views

Task parallel library replacement for BackgroundWorker?

Does the task parallel library have anything that would be considered a replacement or improvement over the BackgroundWorker class? I have a WinForms application with a wizard-style UI, and it does ...
13
votes
2answers
561 views

Parallel.ForEach can cause a “Out Of Memory” exception if working with a enumerable with a large object

I am trying to migrate a database where images where stored in the database to a record in the database pointing at a file on the hard drive. I was trying to use Parallel.ForEach to speed up the ...
13
votes
1answer
2k views

Does Parallel.ForEach require AsParallel()

ParallelEnumerable has a static member AsParallel. If I have an IEnumerable<T> and want to use Parallel.ForEach does that imply that I should always be using AsParallel? e.g. Are both of these ...
12
votes
4answers
3k views

Asynchronously wait for Task<T> to complete with timeout

I want to wait for a Task<T> to complete with some special rules: If it hasn't completed after X milliseconds, I want to display a message to the user. And if it hasn't completed after ...
11
votes
3answers
216 views

Simplest way to run three methods in parallel in C#

I have three methods that I call to do some number crunching that are as follows results.LeftFront.CalcAi(); results.RightFront.CalcAi(); results.RearSuspension.CalcAi(geom, ...
11
votes
1answer
128 views

.NET cuts down on parallel threads on repeating runs

Is there any good reason for .NET to cut down on number of parallel threads over time? I am running calculations in many passes that take days to complete (each pass takes ~1 hour). The tasks are ...
11
votes
5answers
231 views

Most efficient way to process a queue with threads

I have a queue onto which pending fourier transform requests (comparatively time consuming operations) are placed - we could get thousands of transform requests per second in some cases, so its gotta ...
11
votes
3answers
961 views

How do I chain Asynchronous Operations with the Task Parallel library in .NET 4?

I'm attempting to programmatically chain asynchronous operations in C#4, such as Writes to a given Stream object. I originally did this "manually", hooking callbacks from one operation to the next, ...
10
votes
2answers
237 views

Parallels.ForEach Taking same Time as Foreach

All, I am using the Parallels.ForEach as follows private void fillEventDifferencesParallels(IProducerConsumerCollection<IEvent> events, Dictionary<string, IEvent> originalEvents) { ...
10
votes
2answers
310 views

Why is TaskScheduler.Current the default TaskScheduler?

The Task Parallel Library is great and I've used it a lot in the past months. However, there's something really bothering me: the fact that TaskScheduler.Current is the default task scheduler, not ...
10
votes
2answers
2k views

f# Task Parallel Library vs Async Workflows

I have some stuff written in c# that executes concurrent code, making heavy use of the Task Parallel Library (Task and Future continuation chains). I'm now porting this to F# and am trying to ...
9
votes
1answer
274 views

Task.Factory.StartNew() runs on wrong thread if Modal dialog opened

Can anyone explain why, if a C++ application runs a .NET UI component (all on the main thread) which in turn spawns a modal .NET dialog and then tries to use ...
9
votes
4answers
472 views

C# Async: What's the difference between returning void and returning a Task?

In looking at various C# Async CTP samples I see some async functions that return void, and others that return the non-generic Task. I can see why returning a Task<MyType> is useful to return ...
9
votes
2answers
268 views

When to dispose CancellationTokenSource?

The class CancellationTokenSource is disposable and quick look in reflector proves usage of very probably unmanaged resource KernelEvent. It has no finalizer, so if we do not dispose GC wont do that. ...
9
votes
2answers
383 views

Parallel.For freezes after around 1370 iterations, no idea why

I'm running a Parallel.For loop on a little over 7500 objects. Inside that for loop, I'm doing a number of things to each of those objects, specifically calling two web services and two internal ...
8
votes
1answer
144 views

Task cancellation best practices

Lets say I have a processor who's job is to persist files back to the disk. This is running as a Task while observing a BlockingCollection<T> for files to process. When the task gets cancelled ...
8
votes
6answers
299 views

.NET: Why *not* change the priority of a ThreadPool (or Task) thread?

There are many places across the web and stackoverflow where one is discouraged from changing the priority of a ThreadPool thread or TPL Task. In particular: "You have no control over the state ...
8
votes
3answers
323 views

Why shouldn't I use F# asynchronous workflows for parallelism?

I have been learning F# recently, being particularly interested in its ease of exploiting data parallelism. The data |> Array.map |> Async.Parallel |> Async.RunSynchronously idiom seems very ...
8
votes
5answers
868 views

What is the correct way to delay the start of a Task in c#

I want to schedule a task to start in x ms and be able to cancel it before it starts (or just at the beginning of the task). The first attempt would be something like var _cancelationTokenSource = ...
8
votes
1answer
445 views

How to handle all unhandled exceptions when using Task Parallel Library?

I'm using the TPL (Task Parallel Library) in .NET 4.0. I want to be able to centralize the handling logic of all unhandled exceptions by using the Thread.GetDomain().UnhandledException event. ...
8
votes
4answers
2k views

Support of progress reporting and incremental results in .NET 4.0 “Task Parallel Library”

I know that Task Parallel Library is still in Beta and there are likely to be less resources available but from whatever I have read, library gives very special treatment to task scheduling, exception ...
7
votes
2answers
537 views

Parallel.ForEach questions

I am using a Parallel.ForEach loop in C# / VS2010 to do processing and I have a couple of questions. First of all I have a process that needs to extract information from a remote webservice and then ...
7
votes
5answers
1k views

Should i use ThreadPools or Task Parallel Library for IO-bound operations

In one of my projects that's kinda an aggregator, I parse feeds, podcasts and so from the web. If I use sequential approach, given that a large number of resources, it takes quite a time to process ...
7
votes
1answer
1k views

Aborting a long running task in TPL

Our application uses the TPL to serialize (potentially) long running units of work. The creation of work (tasks) is user-driven and may be cancelled at any time. In order to have a responsive user ...
6
votes
3answers
103 views

How can I wait for my async operations to finish when the application gets exited using?

If a user performs an operation, such as deleting items, it removes them from the UI right away and then deletes them from the database on a background thread using TPL. The problem is if the user ...
6
votes
5answers
140 views

How to properly parallelise job heavily relying on I/O

I'm building a console application that have to process a bunch of data. Basically, the application grabs references from a DB. For each reference, parse the content of the file and make some ...
6
votes
2answers
212 views

Multithreading, lambdas and local variables

My question is, in the below code, can I be sure that the instance methods will be accessing the variables I think they will, or can they be changed by another thread while I'm still working? Do ...
6
votes
2answers
134 views

How can I free-up memory used by a Parallel.Task?

I have a program that does a memory intensive simulation. Below I've written a small consoleapplication that replicates the problem I'm having. class Program { static void Main(string[] args) { ...
6
votes
3answers
102 views

Should .Net 4.0 Tasks always be the preferred method for multi-threaded applications?

I was reading about the Task Parallel Library and the article said: In the .NET Framework 4, tasks are the preferred API for writing multi-threaded, asynchronous, and parallel code But it also ...
6
votes
3answers
198 views

What is the best way to wait on a network packet using C#'s new async feature

I've recently been playing around with the new Async CTP, and I've come across a situation where I'm not sure how to proceed. In my current code base, I'm using a concept of "jobs" and a "job ...
6
votes
4answers
302 views

Parallel tree traversal in C#

I need to traverse a tree quickly, and I would like to do it in parallel. I'd rather use the parallel extensions than manually spin up a bunch of threads. My current code looks something like this: ...
6
votes
2answers
180 views

What should I do to use Task<T> in .NET 2.0?

.NET 4.0 has the TPL which contains the nice Task class to encapsulate aynchronous programming models. I'm working on an app that must be .NET 2.0, but I want to avoid rewriting Task. Any ...
6
votes
4answers
391 views

Task synchronization without a UI thread

In the code below I want to syncronize the reporting of the results of a list of tasks. This is working now because task.Result blocks until the task completes. However, task id = 3 takes a long time ...
6
votes
2answers
221 views

How can I pass a state object to a continuation task (.NET Task Parallel Library -TPL)?

I'm using the .NET 4.0 Task Parallel Library with C# (my first time using TPL) I have a task A which I want to run to completion before firing off a bunch of other tasks (B,C,D, etc). I therefore ...
6
votes
3answers
236 views

Plinq statement gets deadlocked inside static constructor

I came across this situation where the following plinq statement inside static constructor gets deadlocked: static void Main(string[] args) { new Blah(); } class Blah { static Blah() { ...
6
votes
5answers
576 views

How to achieve Asynchrony instead of Parallelism in F#

(Sticking to a common example with async fetch of many web pages) How would I spin off multiple (hundreds) of web page requests asynchronously, and then wait for all requests to complete before going ...
6
votes
1answer
337 views

Create a completed Task<T>

I'm implementing a method Task<Result> StartSomeTask() and happen to know the result already before the method is called. How do I create a Task<T> that has already completed? This is ...
6
votes
1answer
504 views

Has anyone used TPL Dataflow yet? [closed]

TPL Dataflow was recently released along with the Visual Studio 2010 Async CTP. Now, I'm curious: Has anyone used this library yet? As I'm very interested in using it for an actor/agent-based ...
6
votes
3answers
742 views

Restart a task or create a new one? c#

I'm working on a project that creates like 20~50 new tasks every 30~80 seconds. Each task lives for 10~20 seconds. So I'm using a Timer to create those new tasks, but everytime I always recreate the ...
6
votes
2answers
149 views

Parallel loops and Random produce odd results

I just started playing with the Task Parallel Library, and ran into interesting issues; I have a general idea of what is going on, but would like to hear comments from people more competent than me to ...

1 2 3 4 5 12