I am new to asynchronous programming. I have a C# dll with an asynchro开发者_Python百科nous method that gets called, takes a function pointer (delegate) and calls this callback function after \"result
in Silverlight I\'m trying to get the frames of a webcam (live) stream textured on a series of 3d quads. I use a VideoSink in a webcam controller class in a webcam controller class. Then i draw the qu
I was previously using the application object to cache data that never changes. I am rewriting the project and have found out the aplication object is a no-no and is just there for legacy support from
I need to make four calls to a WCF service asynchronously and thread safety with async stuff and static methods always cooks my brain.
I am making a Server/Client program in Java. The server waits for a connection then makes a new thread for that connection. The server then goes back and listens for connections on other ports.
The MSDN doesn\'t say. IGraphBuilder has a function Abort. That implies that at the very least it\'s safe to call Abort and any one other IGraphBuilder function at the same time. With this question, I
Consider a single memory access (a single read or a single write, not read+write) SSE instruction on an x86 CPU. The instruction is accessing 16 bytes (128 bits) of memory and the accessed memory loca
Is the following code is reentrant? Is it thread-safe, if this.NextToExecuteIndex is declared private int Ne开发者_开发问答xtToExecuteIndex = 0; and not computed anywhere else?
How to define local static variables (that keeps its 开发者_如何学Cvalue between function calls) that are not shared among different threads?
I’m working on debug logging infrastructure for a server application. Each logging point in source code specifies its level (CRITICAL, ERROR, etc.) among other parameters.