Skip to search.
PowerThreading · Richter/Wintellect Power Threading

Group Information

  • Members: 258
  • Category: Software
  • Founded: Jun 26, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 52 - 81 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
52 scrop706 Offline Send Email Oct 1, 2008
8:05 pm
... send ... Thanks for the response. It's good to know the specifics. We have not run into any problems. We did, though, need to put the following snippet...
53 roberto.dalmonte
roberto.dalm... Offline Send Email
Oct 4, 2008
6:49 am
Hi Jeffrey (or anybody of the group listening) as silly as it may sound, I know your library is GREAT, but I don't know how to get started. So what I'm asking...
54 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 4, 2008
11:44 am
When you download the library, it comes with a bunch of samples showing how to use the AsyncProgModel stuff. Also, I have written a bunch of Concurrent Affairs...
55 Peter Ciszewski
Peter.Ciszewski@... Send Email
Oct 14, 2008
5:40 pm
Hi Jeff et al. I'm new to the Wintellect.Threading library and it's taken me some time to understand how the ResourceLock work so I may be missing something...
56 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 14, 2008
6:48 pm
You're understand is not right <g>. WaitToRead/WaitToWrite return an IDisposable object - this object is different from the lock itself. What you are doing is...
57 Peter Ciszewski
Peter.Ciszewski@... Send Email
Oct 14, 2008
8:16 pm
Oh, I see what you mean. That sample code below does not make sense indeed. Actually, this is more like the code that I was using in my program: var readLock =...
58 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 14, 2008
8:23 pm
Yes, this is true. Every time you call Dispose on the object returned from a WaitToXxx method, you release the lock. If you call Dispose more than once it...
59 roger_chernov Offline Send Email Oct 16, 2008
9:37 am
Greetings, Jeffrey. I've just read your MSDN articles on AsyncEnumerator and have downloaded your library. So - as far as dig it - questions appear rapidly. My...
60 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 17, 2008
2:26 pm
First, you must be sure that your processing can all execute in parallel and that there is no sequential dependency as part of the work. Then, if all your...
61 roger_chernov Offline Send Email Oct 20, 2008
12:29 pm
Thanks a lot, Jeffrey! But now I dunno how to handle exceptions gracefully Suppose I had such code-snippet: try { for (Int32 index = 0; index < items.Count;...
62 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 20, 2008
12:33 pm
You have two options for handling exceptions: * You can put a try/catch block in the callback method itself (in my example, you'd put this...
63 Lars
larsflagan@... Send Email
Oct 20, 2008
1:56 pm
Hi all, I'v been pondering about the best way to execute a async IO call from a web context (asp.net or even wcf). From what I gather the best and most...
64 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 20, 2008
3:13 pm
ASP.NET and WCF fully support async scenarios. Here is sample code from an asmx file that uses my AsyncEnumerator to implement an async ASP.NET web service: ...
65 roger_chernov Offline Send Email Oct 21, 2008
12:58 pm
Jeffrey Thanks a lot for your support! But questions are still coming - I execute the following code I have breakpoint set inside callback method. But to my...
66 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 21, 2008
1:21 pm
I can't tell from this. You have to send me more of the code. Would you rather e-mail it to me? If so, e-mail to JeffreyR (at) Wintellect.com. -- Jeffrey...
67 roberto.dalmonte
roberto.dalm... Offline Send Email
Oct 22, 2008
9:52 am
Hi Jeffrey, after a lot of sweating I came out with my first use of Asynchronous programming. Hurray. As you can see in the following code I check the...
68 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 22, 2008
3:48 pm
Here is a full-blown, working sample: using System; using System.Collections.Generic; using System.Windows.Forms; using Wintellect.Threading.AsyncProgModel; ...
69 roberto.dalmonte
roberto.dalm... Offline Send Email
Oct 22, 2008
6:20 pm
Wow... thank you so much. I guess it could have taken months, if ever, to get there alone. thanks Roberto ... @"C:\temp\OrthoTech.mdb"), ae.EndExecute); ... ...
70 roger_chernov Offline Send Email Oct 23, 2008
4:47 am
Jeffrey, thanks for you help! Well, I decided first of all to ensure that my code is ok, so maybe it's only my mistake. Apart from that I do not understand...
71 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 23, 2008
10:09 am
I explain how it works (under the covers) in my MSDN Concurrent Affairs column: http://msdn.microsoft.com/en-us/magazine/cc546608.aspx For the code I wrote for...
72 roger_chernov Offline Send Email Oct 23, 2008
10:41 am
Jeffey! THAT'S SO COOOOOOOOOOOOOOOOOOOOOOOL! Many thanks, god bless u! But I'm still in process of getting it all together - so there'd be more upcomin...
73 Eric Renshaw
e_renshaw Offline Send Email
Oct 23, 2008
6:35 pm
This is great information. One question I have is I am doing something like this in a web application. I have a MVP pattern setup and the code in my enumerator...
74 Eric Renshaw
e_renshaw Offline Send Email
Oct 23, 2008
8:11 pm
Looking at my own code I noticed that I setup the ae.Result =newCollection<AssociateWorkset>();   But then I never use it. I made a change to my code to use...
75 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 23, 2008
8:42 pm
I don't what GetAssociateWorksetBegin/End do so I can't tell for sure what you are doing/trying to do. When you call the EndInvoke method (which I guess is...
76 roger_chernov Offline Send Email Oct 24, 2008
6:54 am
Jeffrey, I've got a problem. When I construct many-many (~5000) threads I recive the following error An asynchronous operation completed with no way to call an...
77 roberto.dalmonte
roberto.dalm... Offline Send Email
Oct 24, 2008
11:48 am
Hi Jeffrey, I applied the sample you sent me in a similar situation. Can you confirm I did it correctly? Best Regards Thaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaank...
78 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 24, 2008
2:51 pm
It all looks right. -- Jeffrey Richter (http://Wintellect.com<http://wintellect.com/>) From: PowerThreading@yahoogroups.com...
79 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 24, 2008
2:59 pm
First, I don't think you mean "When I construct many-many threads"; I think you mean "When I call the BeginInvoke method many-many times" because you are not...
80 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Oct 26, 2008
12:11 am
Hi all, I am making a Silverlight version of my Power Threading library. Towards this end, I want the resulting DLL to be as small as possible and so I plan to...
81 Gautam Moulik
gmoulik Offline Send Email
Oct 26, 2008
7:16 pm
Hi Jeff, I have few basic questions with relates to threading and AsyncEnumarator class. A. I have one confusion on number of CPU having in my box, when I...
Messages 52 - 81 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help