5
votes
2answers
29 views
Not calling Delegate.EndInvoke can cause memory leak… a myth?
There have been a lot of discussion around this and everyone tend to agree that you should always call Delegate.EndInvoke to prevent a memory leak (even Jon Skeet said it!).
I alw …
0
votes
2answers
19 views
.NET End Invoke / Post Operation Completed
My question involves async operations in VB .NET.
Given the following:
Delegate WorkerDelegate(Byval asyncOp As AsyncOperation)
Public Sub StartWork()
Dim worker a …
0
votes
2answers
28 views
C# .. Asynchronous Sockets .. where is the State Object Stored?
Hi all,
A simple question really, but one where I cannot find any anwsers too.
When I execute an Asynchronous Socket operation, such as :
socket.BeginSend
(
new byte[]{6}, …
0
votes
0answers
17 views
Sequentializing and synchronizing a set of asynchronous web service calls
In my Silverlight class, I have to make a number of async method calls to a webservice. The silverlight class simply calls a number of these method calls, but I want them to actua …
3
votes
6answers
129 views
Is there any command to update UI immediately?
I want to update a progress bar from running 1 to 100 with this code.
for (int i = 0; i <= 100; i++) {
System.Threading.Thread.Sleep(100);
progressBar1.Value = i;
}
B …
1
vote
2answers
36 views
Google Maps: geocode addresses asynchronously, but get their responses in order
I'm trying to plot lines between two or more addresses in Google Maps. The idea is that addresses are in an array (in the order of the route taken), then the array is looped over a …
1
vote
1answer
37 views
SmtpClient.SendAsync - How to ensure my application doesn’t finish before callback?
Hi,
I need to send emails asychronously through a console application. I need to do some DB updates on the callback but my application is exiting before the callback code gets run …
0
votes
5answers
61 views
Python: asynchronous tcp socketserver
I'm looking http://docs.python.org/library/socketserver.html to try and handle asynchronous requests with the socketserver in python. At the very bottom there is an example, but it …
0
votes
2answers
33 views
aio_write on linux with rtkaio is sometimes long
I'm using async io on linux with rtkaio library. In my tests everything works perfectly, but, in my real application i see that aio_write which is supposed to return very fast, is …
2
votes
1answer
36 views
Is Comet easier in ASP.NET with Asynchronous Pages?
I don't mean to ask, is Comet easier in ASPNET than in Jetty? I mean, is Comet easier inn either ASPNET or Jetty, as compared to other alternatives? I think the asynch capabiliti …
1
vote
1answer
58 views
Why only ASP.NET have asynchronous programming model?
I works with ASP.NET. IMHO, the asynchronous programming support in ASP.NET is beautiful. That is, we can have BeginXXXX/EndXXXX pair method to improve scalability for resource int …
0
votes
2answers
51 views
Populating NSImage with data from an asynchronous NSURLConnection
I have hit the proverbial wall trying to figure out how to populate an NSImage with data returned from an asynchronous NSURLConnection in my desktop app (NOT an iPhone application! …
1
vote
5answers
101 views
Does PHP support asynchronous programming?
I'm new to PHP. I am familiar with ASP.NET which support asynchronous programming. That is, if one request needs to do some I/O job. It is suggested to program the web page with Be …
1
vote
5answers
56 views
Asynchronous processing in SQL Server vs. .NET Asynchronous processing
What's is the advantage of using Asynchronous processing in SQL Server over .NET Asynchronous processing? Aren't they the same? I have a hard time to understand what is the benefit …
0
votes
1answer
74 views
How to make asynchronous webservice call in C#?
Hi,
This is about a tangled cluster of XHR and WebMethod (asmx). The pattern is simple, I make calls via XHR to Webmethod, but it seems WebMethod are sync not async. I just need t …
