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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 216 - 245 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
216 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 1, 2009
10:37 am
Happy New Year to all of you! My answers to your questions are inline below... -- Jeffrey Richter (http://Wintellect.com<http://wintellect.com/>) From:...
217 theokku Offline Send Email Jan 1, 2009
3:45 pm
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: ...
218 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 1, 2009
5:13 pm
The proxy that contains the DoSomethingAsync method should also have BeginDoSomething/EndDoSomething methods - use the Begin/End methods instead. -- Jeffrey...
219 chris.schear Offline Send Email Jan 1, 2009
7:55 pm
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....
220 theokku Offline Send Email Jan 2, 2009
4:49 pm
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...
221 roberto.dalmonte
roberto.dalm... Offline Send Email
Jan 3, 2009
8:46 am
Hi Jeffrey, I wrote this code to load some thousand items in a ComboBox async. public delegate IEnumerable<string> LoadComboAsync(); private LoadComboAsync...
222 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 3, 2009
3:10 pm
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...
223 roberto.dalmonte
roberto.dalm... Offline Send Email
Jan 3, 2009
3:34 pm
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...
224 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 3, 2009
4:55 pm
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...
225 Solomon Williams
soloex Offline Send Email
Jan 4, 2009
1:27 pm
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 ...
226 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 4, 2009
1:31 pm
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;...
227 soloex Offline Send Email Jan 4, 2009
1:43 pm
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....
228 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 4, 2009
2:34 pm
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...
229 solomonwilliamsjr@...
soloex Offline Send Email
Jan 4, 2009
4:57 pm
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...
230 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 4, 2009
5:02 pm
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...
231 solomonwilliamsjr@...
soloex Offline Send Email
Jan 4, 2009
6:56 pm
Thx jeffrey for that wonderful explanation! Sent via BlackBerry by AT&T ... From: "Jeffrey Richter (Wintellect LLC)" <JeffreyR@...> Date: Sun, 4 Jan...
232 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 6, 2009
12:11 pm
Later this month, I'll be doing a geekSpeak webcast. You can find more information here:...
233 roberto.dalmonte
roberto.dalm... Offline Send Email
Jan 6, 2009
5:22 pm
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...
234 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 7, 2009
3:07 pm
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...
235 roberto.dalmonte
roberto.dalm... Offline Send Email
Jan 7, 2009
3:50 pm
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. ... ...
236 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 7, 2009
3:52 pm
Just add an attachment to the e-mail. -- Jeffrey Richter (http://Wintellect.com<http://wintellect.com/>) From: PowerThreading@yahoogroups.com...
237 Roberto Dalmonte
roberto.dalm... Offline Send Email
Jan 7, 2009
4:38 pm
You will find 5 attachments: AsyncEnumerator.cst (CodeSmith Template: you can download the free version) Sample1.jpg (sample settings with non timeout, void...
238 roberto.dalmonte
roberto.dalm... Offline Send Email
Jan 7, 2009
4:45 pm
<%@ CodeTemplate Language="C#" TargetLanguage="Text" Src="" Inherits="" Debug="False" CompilerVersion="v3.5" Description="Template description here." %> <%@...
239 roberto.dalmonte
roberto.dalm... Offline Send Email
Jan 9, 2009
10:20 am
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...
240 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 9, 2009
2:35 pm
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,...
241 corrigan_57 Offline Send Email Jan 9, 2009
5:12 pm
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...
242 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 9, 2009
5:57 pm
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. ...
243 corrigan_57 Offline Send Email Jan 9, 2009
7:39 pm
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...
244 meissk8r Offline Send Email Jan 11, 2009
7:17 pm
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...
245 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Jan 11, 2009
11:37 pm
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...
Messages 216 - 245 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