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 216 - 245 of 614   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
216
Happy New Year to all of you! My answers to your questions are inline below... -- Jeffrey Richter (http://Wintellect.com<http://wintellect.com/>) From:...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 1, 2009
10:37 am
217
Hello does someone have some idea how to wrap calls to a serivce from silverlight. Today a call (to a DoSomething service) looks like this: ...
theokku
Offline Send Email
Jan 1, 2009
3:45 pm
218
The proxy that contains the DoSomethingAsync method should also have BeginDoSomething/EndDoSomething methods - use the Begin/End methods instead. -- Jeffrey...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 1, 2009
5:13 pm
219
Thanks for the quick response. Guess my first new years resolution is going to be to read some Concurrent Affairs articles. #2 will be to use spell check....
chris.schear
Offline Send Email
Jan 1, 2009
7:55 pm
220
Thanks for the quick reply, it seems to work. A note: To get the begin/end methods you need to cast the generated client proxy object to a service. Eg. if your...
theokku
Offline Send Email
Jan 2, 2009
4:49 pm
221
Hi Jeffrey, I wrote this code to load some thousand items in a ComboBox async. public delegate IEnumerable<string> LoadComboAsync(); private LoadComboAsync...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Jan 3, 2009
8:46 am
222
I don't know what your ultimate intent is here so it is hard for me to give you guidance. However, updating a UI component (like a combobox) must be done using...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 3, 2009
3:10 pm
223
The problem is the following: I show a form to the user that have to fill the fields of this form One of the fields is the city. I pre-load all the Italian...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Jan 3, 2009
3:34 pm
224
In this case, I recommend you do what I said about having the loop that calls DoEvents inside it and ignore everything I said about cancelation. Of course, you...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 3, 2009
4:55 pm
225
Hi Jeff, I'm really having a hard time, i'm hoping you can help me. I created a quick sample using your library but i dont understand how the threading is ...
Solomon Williams
soloex
Offline Send Email
Jan 4, 2009
1:27 pm
226
I assume you are writing an Windows Forms or WPF app. If so, my AsyncEnumerator uses the constructing thread's SynchronizationContext to make all callbacks;...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 4, 2009
1:31 pm
227
I'm writing an ASP.NET application. I added the SyncContext = null but still the BeginExecute method does not return until the InsertData method is completed....
soloex
Offline Send Email
Jan 4, 2009
1:43 pm
228
If you just want to execute it asynchronously for some reason, then you could create a delegate and call BeginInvoke/EndInvoke on the delegate. But, why do you...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 4, 2009
2:34 pm
229
My goal is to speed up the app by not waiting on database inserts/updates/deletes. My takeaway on the PowerThreading Library is that using it will create a...
solomonwilliamsjr@...
soloex
Offline Send Email
Jan 4, 2009
4:57 pm
230
Adding threads doesn't speed up the app unless the work that is it doing can be parallelized on multiple CPUs. You're making a DB request and so you have no...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 4, 2009
5:02 pm
231
Thx jeffrey for that wonderful explanation! Sent via BlackBerry by AT&T ... From: "Jeffrey Richter (Wintellect LLC)" <JeffreyR@...> Date: Sun, 4 Jan...
solomonwilliamsjr@...
soloex
Offline Send Email
Jan 4, 2009
6:56 pm
232
Later this month, I'll be doing a geekSpeak webcast. You can find more information here:...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 6, 2009
12:11 pm
233
Hi Jeffrey, I wrote a Codesmith template that will help newbies to use your wonderful library. How can I send it to you, so you can check it? You just have to...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Jan 6, 2009
5:22 pm
234
I think this is a great idea! I don't use CodeSmith myself so I can't test it out but if you post it to the group, perhaps others will find it useful and be...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 7, 2009
3:07 pm
235
Sorry... ...how do I send a file to this group??? Roberto ... it to the group, perhaps others will find it useful and be able to provide some feedback. ... ...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Jan 7, 2009
3:50 pm
236
Just add an attachment to the e-mail. -- Jeffrey Richter (http://Wintellect.com<http://wintellect.com/>) From: PowerThreading@yahoogroups.com...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 7, 2009
3:52 pm
237
You will find 5 attachments: AsyncEnumerator.cst (CodeSmith Template: you can download the free version) Sample1.jpg (sample settings with non timeout, void...
Roberto Dalmonte
roberto.dalm...
Offline Send Email
Jan 7, 2009
4:38 pm
238
<%@ CodeTemplate Language="C#" TargetLanguage="Text" Src="" Inherits="" Debug="False" CompilerVersion="v3.5" Description="Template description here." %> <%@...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Jan 7, 2009
4:45 pm
239
Hi Jeffrey, I get, sometimes, the following error: The IAsyncResult object provided does not match this delegate. What puzzles me is that this would only...
roberto.dalmonte
roberto.dalm...
Offline Send Email
Jan 9, 2009
10:20 am
240
SelfComplete is called when my AE is discarding an IAsyncResult that has completed. This is when I call whatever code you passed to ae.End(discardGorup,...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 9, 2009
2:35 pm
241
Hi Jeffrey, I've been taking a look at your powerthreading library, which is very cool, thanks! :) While using the library, I was wondering if there might be a...
corrigan_57
Offline Send Email
Jan 9, 2009
5:12 pm
242
I agree with you that it would be great to simplify the code and I went down the path of using thread local storage as a way to do this a long time ago. ...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 9, 2009
5:57 pm
243
Thanks Jeffrey. It's good to know I wasn't too far off base. I wasn't aware that [ThreadStatic] fields are only initialized once - thanks, I'll fix that. I...
corrigan_57
Offline Send Email
Jan 9, 2009
7:39 pm
244
I have a question about the behavior of the timeout feature. It seems that once I use SetCancelTimeout, the timeout value holds until the AsyncEnumerator has...
meissk8r
Offline Send Email
Jan 11, 2009
7:17 pm
245
No. When you cancel (via timeout or otherwise) an AsyncEnumerator, you cancel the whole AsyncEnumerator object. I gave this a lot of thought and the problem is...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Jan 11, 2009
11:37 pm
Messages 216 - 245 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