21
votes
13answers
18k views
How can I upload files asynchronously with JQuery?
I would like to upload a file asynchronously with JQuery. This is my HTML:
<span>File</span>
<input type="file" id="file" name="file" size="10"/>
<input id="uploadbutton" …
16
votes
7answers
5k views
Implement C# Generic Timeout
I am looking for good ideas for implementing a generic way to have a single line (or anonymous delegate) of code execute with a timeout.
TemperamentalClass tc = new TemperamentalClass();
…
13
votes
1answer
877 views
What is the status of POSIX asynchronous I/O (AIO)?
There are pages scattered around the web that describe POSIX AIO facilities in varying amounts of detail. None of them are terribly recent. It's not clear what, exactly, they're describing. For …
13
votes
2answers
2k views
Asychronous Programming in Python Twisted
I'm having trouble developing a reverse proxy in Twisted. It works, but it seems overly complex and convoluted. So much of it feels like voodoo...
Are there any simple, solid examples of asynchronous …
10
votes
2answers
1k views
Sleep Command in T-SQL?
Is there to way write a T-SQL command to just make it sleep for a period of time? I am writing a web service asynchronously and I want to be able to run some tests to see if the asynchronous pattern …
10
votes
2answers
1k views
How to write Asynchronous LINQ query?
After I read a bunch of LINQ related stuff, I suddenly realized that no articles introduce how to write asynchronous LINQ query.
Suppose we use LINQ to SQL, below statement is clear. However, if the …
8
votes
3answers
172 views
C# -Four Patterns in Asynchronous execution
I heard that there are four patterns in asynchronous execution .
"There are four patterns in async delegate execution: Polling, Waiting for Completion, Completion Notification, and "Fire and Forget". …
8
votes
2answers
356 views
What’s the best way of ensuring valid object lifespan when using Boost.Asio?
Hi all.
Been playing a lot with Boost.Asio of late. I like the library a lot since it offers a fantastic way to squeeze performance out of today's multicore systems.
A question I have asked myself …
8
votes
7answers
2k views
.NET: How to have background thread signal main thread data is available?
What is the proper technique to have ThreadA signal ThreadB of some event, without having ThreadB sit blocked waiting for an event to happen?
i have a background thread that will be filling a shared …
7
votes
2answers
126 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 always followed this …
7
votes
5answers
397 views
Asynchronous method call in Python ?
I was wondering if there's any library for asynchronous method calls in Python. It would be great if you could do something like
@async
def longComputation():
<code>
token = …
7
votes
3answers
1k views
How to correctly use .NET2.0 serial port .BaseStream for async operation
I am attempting to use the .BaseStream property of the .NET2.0 SerialPort to do asynchronous reads and writes (BeginWrite/EndWrite, BeginRead/EndRead).
I am having some success in this, but after a …
7
votes
12answers
1k views
Busy cursors - why?
Can anyone give me a scenario where they think busy cursors are justified? I feel like they're always a bad idea from a user's perspective. Clarification: by busy cursors, I mean when the user can …
6
votes
6answers
1k views
Asynchronous function call in Flex
Is it possible to call a function asynchronously in Flex? I want to parse a file at regular intervals without blocking the rest of the application, what is the recommended approach for this?
6
votes
3answers
378 views
What happened to clockless computer chips?
Several years ago, the 'next big thing' was clockless computers. The idea behind it was that without a clock, the processors would run significantly faster.
That was then, this is now and I can't …
