Print Page | Close Window

Dynamic AsyncParallelTask?

Printed From: IdeaBlade
Category: DevForce
Forum Name: DevForce 2010
Forum Discription: For .NET 4.0
URL: http://www.ideablade.com/forum/forum_posts.asp?TID=2026
Printed Date: 05-Apr-2025 at 6:21am


Topic: Dynamic AsyncParallelTask?
Posted By: moflaherty
Subject: Dynamic AsyncParallelTask?
Date Posted: 28-Jul-2010 at 12:22pm
Is there a way to create AsyncParallelTask as a variable and then add queries to it? For example:
 
var asyncParallelTask = AsyncParallelTask.Create();
 
asyncParallelTask.AddAsyncQuery(1, x => mgr.Customers);
asyncParallelTask.AddAsyncQuery(2, x => mgr.Employees);
 
asyncParallelTask.Execute(cb => {
((EntityFetchedEventArgs <Customer>)cb.CompletionMap[1])
.Result.ForEach(c => Debug.WriteLine(c.CompanyName));
((EntityFetchedEventArgs <Employee>)cb.CompletionMap[2])
.Result.ForEach(e => Debug.WriteLine(e.LastName));
});
It would sure be nice to dynamically build these, so I want to ask before I give up on this approach. Obviously, the above does not work.
 
Thanks!



Replies:
Posted By: davidklitzke
Date Posted: 28-Jul-2010 at 3:40pm
What part of this doesn’t work?
Each time you add an async query the return value is a new AsyncParallelTask.  So you can do this:
var asyncParallelTask = AsyncParallelTask.Create();
 
var t2 = asyncParallelTask.AddAsyncQuery(1, x => mgr.Customers);
var t3 = t2.AddAsyncQuery(2, x => mgr.Employees);
t3.Execute(…);
 



Print Page | Close Window