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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 319 - 348 of 614   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
319
Maybe this forum discussion will help you: http://channel9.msdn.com/forums/TechOff/152339-QueryPerformanceCounter-AthlonX2/ -- Jeffrey Richter...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 1, 2009
7:42 pm
320
Available for immediate download is the newest release of my Power Threading Library. This release includes support for the .NET Framework, Silverlight, and...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 2, 2009
4:35 pm
321
Hi Just downloaded your new release, no issues so far However I have a question I have such a code AsyncEnumerator ae = new AsyncEnumerator(); ...
Eugen Rata
eugen.rata@...
Send Email
Feb 2, 2009
5:32 pm
322
Fix the calls to Begin/End so they look like the below: AsyncEnumerator ae = new AsyncEnumerator(); ae.EndExecute(ae.BeginExecute(DoAuthenticate(ae), null,...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 2, 2009
7:21 pm
323
Something is wrong with that code, the method DoAuthenticate never gets called and application just hangs. If I do the old way method is called and works fine,...
Eugen Rata
eugen.rata@...
Send Email
Feb 2, 2009
10:38 pm
324
You must be in a Windows Forms or WPF app then, right? If so, then call "ae.SyncContext = null;" before the first call to EndExecute. But now, you can't update...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 2, 2009
10:47 pm
325
Yes, I'm in a WinForms app, and DoAuthentication function does update some visual controls from form. So, it looks like ae.SyncContext = null is not a good...
Eugen Rata
eugen.rata@...
Send Email
Feb 2, 2009
10:57 pm
326
OK, I recommend this: * Do not touch the SyncContext property of the AE. * In DoAuthentication, issue your 1st async...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 2, 2009
11:06 pm
327
Just to confirm. A fix for falsly detecting deadlock is not in this latest release. Right? Kevin...
rkevinburton@...
Send Email
Feb 4, 2009
12:35 am
328
That’s right. The fix is not trivial and at this time I do not intend to fix it because not enough people are having trouble with it (sorry). -- Jeffrey...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 4, 2009
1:32 am
329
Howdy, Just downloaded your Feb distribution. I am able to compile the WindowsForms sample BUT ... when executing I get a NULLException Here... foreach (String...
dennis.jonio
Offline Send Email
Feb 5, 2009
6:37 pm
330
Which variable is null? Can I get a stack trace? -- Jeffrey Richter (http://Wintellect.com<http://wintellect.com/>) From: PowerThreading@yahoogroups.com...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 5, 2009
6:52 pm
331
Jeff, As best as I can tell there is nothing null at "this" level. .... the trace follows at System.Threading.Monitor.Enter(Object obj) at ...
dennis.jonio
Offline Send Email
Feb 5, 2009
8:47 pm
332
OK, I had a stupid bug which was easy to fix. I will post a new DLL on the web site soon (probably tomorrow). To work around, call...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 5, 2009
9:31 pm
333
Jeff, Thanks for the fix. I was seeing the same exception when calling ae.End with a discard group, and calling EnableDebugSupport fixed the problem. Vern ... ...
veastley
Offline Send Email
Feb 5, 2009
11:14 pm
334
Jeff, all better ... your quick response says some good things ... r, dennis ... on the web site soon (probably tomorrow)....
dennis.jonio
Offline Send Email
Feb 6, 2009
12:05 pm
335
Hey, I need some help understanding the typed AsyncEnumerator, in the context of a Silverlight app (if that matters). My main scenario is that I have a WCF...
el_diosloco
Offline Send Email
Feb 11, 2009
7:45 am
336
You can't perform your operation asynchronously and synchronously at the same time. If you need the result of DoWork before continuing, then you might as well...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 11, 2009
11:19 pm
337
Scenario: I only want the last sent WCF request to be processed. Overall question: Is it possible to use Cancel with the Events async pattern (instead of the...
el_diosloco
Offline Send Email
Feb 12, 2009
10:46 am
338
The problem here is that you are canceling the AsyncEnumerator but the event is still firing. Since the event fires, it notifies my AE which then can't notify...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 12, 2009
11:51 am
339
I'd like to evaluate the library, but the sample solutions and projects are for Visual Studio 2008, and cannot be opened with Visual Studio 2005. This and the...
pfalcon64
Offline Send Email
Feb 13, 2009
2:14 am
340
I do not have VS 2005 projects but you could create a new solution, create projects and then add the CS files to the projects. I don't know what bug you are...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 13, 2009
3:18 am
341
Can you clarify where that would go in the code? Do you have an example of doing this? I see example code of you using discard and cancel with the BeginXxx ...
el_diosloco
Offline Send Email
Feb 13, 2009
7:13 am
342
You are already calling End in the line where you call PrepareOperation. Change ae.End() to ae.End(0, eventArgsFactory.EndInvoke) After you cancel an AE...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 13, 2009
7:48 am
343
Hello Richter & PWT group ... if your PTL is open source ... i'd be able to use it, otherwise there are some obstacles ...however helpful the PTL may be ... it...
Paul Schwartzberg
noitanon
Offline Send Email
Feb 14, 2009
4:06 pm
344
The PTL is not open source. -- Jeffrey Richter (http://Wintellect.com<http://wintellect.com/>) From: PowerThreading@yahoogroups.com...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 14, 2009
11:50 pm
345
Hi Jeff, In the future, can you please provide code samples for these types? ...
Nikos Baxevanis
n.baxevanis
Offline Send Email
Feb 15, 2009
10:03 pm
346
There is a sample in the AsyncEnumerator-Silverlight\Flickr directory. See the Page.xaml.cs file. You should uncomment the "#define AsyncEnumerator" line at...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Feb 15, 2009
11:18 pm
347
Oh yes. (I previously skip that sample). Thank you for the details. To: PowerThreading@...: JeffreyR@...: Sun, 15 Feb 2009...
Nikos Baxevanis
n.baxevanis
Offline Send Email
Feb 16, 2009
6:38 am
348
Hi Jeffrey, Thanks very much for making your library available. It really is a simpler way of writing asynchronous code. I have attempted to take some existing...
Jonathan Reis
jon_reis
Offline Send Email
Feb 16, 2009
5:24 pm
Messages 319 - 348 of 614   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