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 3 - 42 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3 Jeffrey Richter
jeffrey.richter Offline Send Email
Jul 31, 2008
3:02 pm
Since I set up this group, I've been pretty busy but I wanted to let all of you know that I am here and available to talk about anything Power Threading...
4 rjdevereux Offline Send Email Jul 31, 2008
3:44 pm
Thanks for releasing the library, it's definitely helped me in a few places. Here is one of the places we are using it. The code below is basically executing...
5 Alexander Gurevich
alex_gur2001 Offline Send Email
Jul 31, 2008
9:39 pm
Hi Jeffrey, I am using your library for last 2 weeks (for a new Real time data manager), specifically I am using AsyncEnumerator and OneManyResourceLock (both...
6 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Aug 1, 2008
4:30 pm
First, I'm not sure the context in which you are using the OneManyResourceLock but if you are using it within an iterator that is executing via an...
7 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Aug 1, 2008
6:11 pm
The discard feature of my AsyncEnumerator is discussed in the new magazine column: http://msdn.microsoft.com/en-us/magazine/cc721613.aspx This feature tells my...
8 santhisree13 Offline Send Email Aug 4, 2008
8:42 pm
Hi, I want to check the status of file/Directory/orSomething (MachineStatus) periodically(using System.Threading.Timer), when a condition is true, I want to...
9 Jeffrey Richter
jeffrey.richter Offline Send Email
Aug 7, 2008
1:44 pm
I'm not sure what you are ultimately trying to accomplish but you might want to look at the System.IO.FileSystemWatcher class which ships with the .NET Fx....
10 santhi sree
santhisree13 Offline Send Email
Aug 15, 2008
2:25 am
Thanks a lot for your reply sir.   with regards Santhi ... From: Jeffrey Richter <JeffreyR@...> Subject: [PowerThreading] Re: Question: Timer &...
11 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Aug 20, 2008
7:04 pm
I am presenting at Wintellect's Devscovery conference<http://www.devscovery.com/> this week. At this conference, the attendees are able to set up 1-on-1...
12 olivier.matrot Offline Send Email Aug 25, 2008
8:50 am
Hello, I'm having difficulties using the library with a WCF client generated with SVCUTIL.EXE /async. Passing the async enumerator "End" method to one of the...
13 Olivier MATROT
olivier.matrot Offline Send Email
Aug 25, 2008
10:16 am
Gorget about it, this was my fault. I was using wrong code retrieve the user object from the async result, which results in an InvalidCastException that is not...
14 Olivier MATROT
olivier.matrot Offline Send Email
Aug 25, 2008
3:20 pm
Hello, I would like to see an ASP.NET sample page using AsyncEnumerator object with Page.RegisterAsyncTask() or Page. AddOnPreRenderCompleteAsync. This could...
15 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Aug 26, 2008
12:00 am
OK, I have added an ASP.NET Web form sample to Power Threading Samples directory. This sample uses Page.AddOnPreRenderCompleteAsync. When using my...
16 scrop706 Offline Send Email Sep 4, 2008
10:46 pm
Our application has not yet been upgraded to .NET 3.5. Is it possible to have a version of Wintellect.Threading.dll that will work on .NET 2.0 (does not...
17 e_renshaw Offline Send Email Sep 15, 2008
10:51 pm
I have a some queries that can be run asynchronously and the Wait for all pattern looks to be just what I would need. But what I would like to do is place the...
19 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 16, 2008
3:29 am
I have no example of this however, it is very easy to do. In your iterator, just allocate the collection you want and after you issue all the queries, execute...
29 e_renshaw Offline Send Email Sep 17, 2008
4:26 am
Jeffrey, I was sort of bouncing around some of what you are talking about below. Into my iterator, one of the parameters being passed in is a collection of...
30 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 17, 2008
2:12 pm
The first problem is that you need a method that asynchronously looks up the state by address. You can't just call GetStateByAddress - this method needs to...
31 e_renshaw Offline Send Email Sep 17, 2008
10:07 pm
Alright! Now I am getting somewhere. I followed your example and was able to get this working to fill a dataset on the web page; and wow is that fast! I am...
32 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 18, 2008
4:16 am
There is really nothing different for reads versus writes. You issue async reads or writes the same way (via some BeginXxx method) and then the AsyncEnumerator...
33 Brendan
brendanmagafa Offline Send Email
Sep 19, 2008
1:28 pm
First of all, thank you for creating such an awesome and much-needed library. I have a couple of questions regarding the OneManyResourceLock. And if I've...
34 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 19, 2008
3:27 pm
Documentation on my OneManyResourceLock can be found here: http://msdn.microsoft.com/en-us/magazine/cc163599.aspx 1. Yes, calling Done is the same as...
35 Brendan
brendanmagafa Offline Send Email
Sep 20, 2008
3:34 am
Okay that makes sense. Thanks so much for your response, I really appreciate it. I do have another question that's slightly off-topic. I'm just wondering if...
36 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 20, 2008
3:52 am
I personally have done any work along these lines. In a 32-bit address space it is impossible to get 10GB of data in memory without using some kind of paging...
37 Brendan
brendanmagafa Offline Send Email
Sep 20, 2008
4:12 am
Thanks again. Did you mean you "haven't" personally done any work along these lines? By "parallelize the scan" do you mean to allow for concurrent enumerations...
38 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 20, 2008
4:15 am
Yes, I meant "haven't". By scan, I meant read-only operations. But, for add/remove, there would probably have to be some locking - just as short-lived as...
39 Brendan
brendanmagafa Offline Send Email
Sep 20, 2008
4:31 am
Okay thanks very much for your time. Brendan....
40 gmoulik Offline Send Email Sep 26, 2008
1:25 pm
Hi Jeff, I have a question on 'Singleton' model, please refer to the following code block .. public static SingleTon Instance { get { if (null ==...
41 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Sep 26, 2008
4:33 pm
The object reference you pass to the lock statement does NOT have to be volatile; it can be an ordinary reference. So, you can use a readonly static reference...
42 Gautam Moulik
gmoulik Offline Send Email
Sep 26, 2008
5:30 pm
Thanks a lot Jeff. From: PowerThreading@yahoogroups.com [mailto:PowerThreading@yahoogroups.com] On Behalf Of Jeffrey Richter (Wintellect LLC) Sent: Friday,...
Messages 3 - 42 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