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 127 - 156 of 1043   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
127 williarob2 Offline Send Email Dec 1, 2008
5:05 pm
In case any one is interested, I posted details about adding asynchronous methods to the Enterprise Library, on my blog: ...
128 roberto.dalmonte
roberto.dalm... Offline Send Email
Dec 1, 2008
7:30 pm
Hi Jeffrey, I have a WCF application that offers a simple service to a couple of clients. The server gives the clients data from a database and write to it...
129 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 1, 2008
7:45 pm
If you have just 10 concurrent users at most then there won't be much benefit to making the server asynchronous. The worst case is that you have 10 threads...
130 roberto.dalmonte
roberto.dalm... Offline Send Email
Dec 4, 2008
1:09 pm
http://blogs.msdn.com/charlie/archive/2008/12/03/jeff-richter-video- on-asynchronous-programming-and-his-power-threading-library.aspx I believe anyone in this...
131 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 4, 2008
3:17 pm
Wow Roberto, you are fast and beat me to the punch! I was going to post a message to the group this morning with the link but thanks for already doing it. It...
132 Daniel Earwicker
danielearwicker Offline Send Email
Dec 5, 2008
2:30 pm
(I think I accidently sent this message directly to the person who started the thread, apologies for that.) This video is indeed a thing of greatness. I had an...
133 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 5, 2008
4:18 pm
Lambdas (and anonymous methods) are very helpful for asynchronous programming. However, they are not as powerful as the iterator. The reason is because you...
134 Daniel Earwicker
danielearwicker Offline Send Email
Dec 5, 2008
4:37 pm
Thanks for the response, Jeffrey. There is certainly no need to start and end control structures across the boundaries between lambdas and outer functions....
135 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 5, 2008
4:57 pm
I see what you are saying. I re-read your blog entry and it seems to me that the goal of your proposal is to hide the details of asynchronous socket...
136 Daniel Earwicker
danielearwicker Offline Send Email
Dec 7, 2008
12:12 am
Thanks once again for the feedback, Jeffrey. I've had some fun today playing with this further. I've looked at providing this facility as a pure bolt-on...
137 roberto.dalmonte
roberto.dalm... Offline Send Email
Dec 9, 2008
11:12 am
Hi Jeffrey, I've been watching Luca Bolognese's presentation on F# at PDC, and I was impressed by the simplicity (for him, since I understood very little) to...
138 lassevk2004 Offline Send Email Dec 9, 2008
1:27 pm
I am looking at AsyncEnumerator, and thought I'd try to make a test application copying a file from local disk over the network, and try to interleave the two...
139 lassevk2004 Offline Send Email Dec 9, 2008
1:50 pm
Here is in fact the whole code. I am seeing odd results so perhaps this test application wasn't the best way to test it. The results are odd in that the...
140 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 9, 2008
3:52 pm
Yes, using the AsyncState is the best way to distinguish the 2 concurrent operations. --Jeffrey Richter (http://Wintellect.com<http://wintellect.com/>) ...
141 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 9, 2008
4:34 pm
I have not really studied F# async facilities so I don't know enough to compare them with something else. None of Wintellect's clients are using F# (it's all...
142 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 9, 2008
4:45 pm
File I/O in Windows is a lot more complicated than people realize. Some file systems (like FAT) perform all their operations synchronously internally even if...
143 tabbara.bassam Offline Send Email Dec 9, 2008
6:22 pm
Can I run the PowerThreading library (silverlight edition) on the Mac? I noticed that the license currently excludes this. Thanks! Bassam...
144 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 9, 2008
8:57 pm
The issue is that I sold the patent rights to my ReaderWriterGate/SyncGate to Microsoft. When I sold it to them, I got a license back that allows I and my...
145 rkevinburton@... Send Email Dec 9, 2008
10:52 pm
I am having a hard time getting my head around the ReaderWriterGate test. Before I bang my head against the wall any longer I was wondering if there was...
146 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 9, 2008
11:45 pm
Well, you are looking at my code that test the gate to ensure that it is working correctly. This code is not good for understanding how to actually use the...
147 rkevinburton@... Send Email Dec 10, 2008
2:24 am
I haven't looked into the reason but when I try to start up Visual Sudio with the PowerThreading-samples solution I ge the attached error. Basically I cannot...
148 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 10, 2008
2:31 am
If you care about this project, then you need to install the Silverlight Tools for Visual Studio 2008 SP1 from here http://silverlight.net/GetStarted/ --...
149 rkevinburton@... Send Email Dec 10, 2008
5:13 am
Thank you I will try that. Kevin...
150 rkevinburton@... Send Email Dec 10, 2008
5:19 am
I am trying to run the APM samples and tests but on the first functional test I get the attached UNCAUGHT InvalidOperation exception. It occurs on the...
151 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 10, 2008
5:55 am
My guess is that you are running the app under the debugger and that the debugger is reporting the unhandled exception. Am I right? If so, the debugger is...
152 Jeffrey Richter (Wint...
jeffrey.richter Offline Send Email
Dec 10, 2008
5:56 am
My guess is that you are running this under the debugger. Am I right? If so, the debugger is letting you know about the exception. If you hit F5 (Go), then the...
153 lassevk2004 Offline Send Email Dec 10, 2008
8:39 am
Thanks for the two answers provided. I guess I'll need to be a bit more elaborate in my experimentation :) ... synchronously internally even if you try to do...
154 rkevinburton@... Send Email Dec 10, 2008
3:01 pm
I am running under the debugger. This just didn't seem like an exception that I could ignore. If I cancel this dialog and hit F5 then the tests continue to the...
155 rkevinburton@... Send Email Dec 10, 2008
3:01 pm
I am running under the debugger. This just didn't seem like an exception that I could ignore. If I cancel this dialog and hit F5 then the tests continue to the...
156 rkevinburton@... Send Email Dec 10, 2008
3:06 pm
Aparently Microsoft is confused and it will not let me install this SDK. It says that I need Visual Studio 2008 SP1. I have the Team Suite 2008. Apparently it...
Messages 127 - 156 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