Search the web
Sign In
New User? Sign Up
PowerThreading · Richter/Wintellect Power Threading
? 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.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 52 - 81 of 617   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
52
... 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...
scrop706
Offline Send Email
Oct 1, 2008
8:05 pm
53
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...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Oct 4, 2008
6:49 am
54
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 4, 2008
11:44 am
55
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...
Peter Ciszewski
Peter.Ciszewski@...
Send Email
Oct 14, 2008
5:40 pm
56
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 14, 2008
6:48 pm
57
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 =...
Peter Ciszewski
Peter.Ciszewski@...
Send Email
Oct 14, 2008
8:16 pm
58
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 14, 2008
8:23 pm
59
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...
roger_chernov
Offline Send Email
Oct 16, 2008
9:37 am
60
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 17, 2008
2:26 pm
61
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;...
roger_chernov
Offline Send Email
Oct 20, 2008
12:29 pm
62
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 20, 2008
12:33 pm
63
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...
Lars
larsflagan@...
Send Email
Oct 20, 2008
1:56 pm
64
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: ...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 20, 2008
3:13 pm
65
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...
roger_chernov
Offline Send Email
Oct 21, 2008
12:58 pm
66
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 21, 2008
1:21 pm
67
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...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Oct 22, 2008
9:52 am
68
Here is a full-blown, working sample: using System; using System.Collections.Generic; using System.Windows.Forms; using Wintellect.Threading.AsyncProgModel; ...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 22, 2008
3:48 pm
69
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); ... ...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Oct 22, 2008
6:20 pm
70
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...
roger_chernov
Offline Send Email
Oct 23, 2008
4:47 am
71
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 23, 2008
10:09 am
72
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...
roger_chernov
Offline Send Email
Oct 23, 2008
10:41 am
73
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...
Eric Renshaw
e_renshaw
Offline Send Email
Oct 23, 2008
6:35 pm
74
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...
Eric Renshaw
e_renshaw
Offline Send Email
Oct 23, 2008
8:11 pm
75
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 23, 2008
8:42 pm
76
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...
roger_chernov
Offline Send Email
Oct 24, 2008
6:54 am
77
Hi Jeffrey, I applied the sample you sent me in a similar situation. Can you confirm I did it correctly? Best Regards Thaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaank...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Oct 24, 2008
11:48 am
78
It all looks right. -- Jeffrey Richter (http://Wintellect.com<http://wintellect.com/>) From: PowerThreading@yahoogroups.com...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 24, 2008
2:51 pm
79
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 24, 2008
2:59 pm
80
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...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Oct 26, 2008
12:11 am
81
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...
Gautam Moulik
gmoulik
Offline Send Email
Oct 26, 2008
7:16 pm
Messages 52 - 81 of 617   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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