0
votes
0answers
6 views
Adding a child to Viewport3D asynchronously gives “This API was accessed with arguments from the wrong context.”
When I try to add 3D-content to a Viewport3D, asynchronously, this results in "This API was accessed with arguments from the wrong context." in a TargetInvocationException.
The 3D-content is …
0
votes
1answer
14 views
Skipping data in winsock?
Is it possible to skip a portion of the incoming data on a TCP stream socket, instead of having to read it into a buffer? Preferably, I'm looking for something that also works asynchronously.
1
vote
2answers
54 views
Python asynchronous callbacks and generators
Hello,
I'm trying to convert a synchronous library to use an internal asynchronous IO framework. I have several methods that look like this:
def foo:
....
sync_call_1() # synchronous blocking …
0
votes
0answers
8 views
How to I use my own interface with OperationContext.Current.GetCallbackChannel?
I wish to pass my own interface to OperationContext.Current.GetCallbackChannel, as I wish to make Asynchronous calls to the client(s) and hence need to add the “BeginMethod()” etc to the interface.
…
0
votes
1answer
19 views
Tornado Web & Persistent Connections
How can I write Http server in TornadoWeb that will support persistent Connections.
I mean will be able to receive many requests and answer to them without closing connection.
How does it actually …
0
votes
0answers
32 views
Has anyone done a performance analysis of boost::asio ?
I require socket-like local IPC. I used named pipes and overlapped IO on windows and I want to rewrite the application to boost::ASIO so that it can use UNIX domain sockets as well.
I've recently …
0
votes
0answers
21 views
/proc/sys/fs/aio-nr is never higher than 1024 (AIO on linux)
I'm trying to use async io on linux. As far as i know there're 3 options:
kernel calls (io_submit and friends)
libRT - uses threads in user space
libRTKAIO - wrapper of kernel calls which does not …
5
votes
4answers
55 views
The easiest way to perform asynchronous operations in Java web applications
I have Java servlet-based web applications. I would like to implement some operations in asynchronous manner, like for example writing to a log.
I would like to avoid JMS overhead and do something …
0
votes
1answer
37 views
Scroll to top of page after async post back
So I need to scroll to the top of the page after an async post back in an asp.net update panel.
The code I used was this:
…
0
votes
2answers
59 views
Asynchronous waiting while C# function is executing
I have a blocking function that executes an asynchronous MySQL query and returns the result when it is obtained. The reason is is asynchronous is this program is not allowed to lock up during a query.
…
4
votes
2answers
55 views
Is there any circumstance in which calling EnterWriteLock on a ReaderWriterLockSlim should enter a Read lock instead?
I have a seemingly very simple case where I'm using System.Threading.ReaderWriterLockSlim in the 3.5 version of the .NET Framework. I first declare one, as shown here:
I put a break point right …
0
votes
1answer
16 views
ASP.NET UpdatePanel Cancel Previous AsyncPostBack
I have more than one UpdatePanel inside a webform. Inside a UpdatePanel I have a button which triggers AsyncPostBack. According to my requirement I need to cancel any previous pending AsyncPostBack …
0
votes
1answer
25 views
What is the trade of between OneWay and Async calls for broadcasting events to clients? (WCF)
I am writing a WCF (netTcpBinding planned at present) client/server application that has to support a “handful” of clients including sending events to the clients.
I do not wish the server to …
8
votes
3answers
142 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". …
1
vote
4answers
40 views
C# /ASP.NET Asynchronous Thread Execution
I have some doubts on executing the following :
public class Test
{
delegate int TestDelegate(string parameter);
static void Main()
{
TestDelegate d = new TestDelegate(PrintOut);
…
