The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
104 views

C# Asynchronous Task for a Stock Ticker

I've been trying to learn more about asynchronous tasks and threading but not making a ton of headway. I'm trying to load an "Engine" type of thread that will run in the background upon launch and ...
0
votes
1answer
48 views

Terminate function in jQuery

Let's suppose that I have a container <div id="container"></div>, that I'd like to fill with dynamically generated elements from a $.post response.. Than suddenly, for some reason, I'd ...
-1
votes
2answers
84 views

Run code on UI thread [closed]

I need to submit code to be run in a thread that does message pumping, without defining several custom messages. Something like the Java SwingUtilities.invokeLater() (NOTE: i already have an utility ...
1
vote
3answers
47 views

When does the ReadCallBack get called in this example?

I am having a bit of nightmare understanding the asynchronous socket communication model in .net. Can someone please tell me when does the ReadCallBack method get called( I am using an asyn server to ...
1
vote
2answers
53 views

NodeJS - Can't implement asynchronous funtion

I'm newbie in NodeJs. This is my code for learning asynchronous funtion. //--------------------- MAIN --------------- console.log("Endpoint 1\r\n"); testThread(1000000000,function (result){ ...
-1
votes
1answer
140 views

C# single threaded asynchronous processing mechanism [closed]

I am new to programming and was asked a question in a test, although I failed the test. I wanted to find out the answer and proceed with more learning. The question is: A single-threaded application ...
0
votes
2answers
56 views

ASP.net threading for mathematical simulation [closed]

I have to do math based simulator website. So we are using asp.net for the project and I'm in a big trouble because threads are not support for the asp.net. Is that true? we search so many threads in ...
0
votes
1answer
143 views

What's Java's equivalent of asynchronous callbacks?

Giving the similarity between C# and Java, I expect Java having similar programming support. I heard Java has this Future stuff but I don't know similar it is to C# asynchronous patterns.
0
votes
2answers
563 views

Apache Kafka: consumer state

I read the documentation on the Kafka website but after trying to implement a complete minimal example ( producer --> kafka --> consumer) it's not very clear to me how the "consumer state", the offset ...
0
votes
1answer
122 views

How to disable ReplyTo on Asynchronous “one-way” exchange pattern

About Mule 3.3 CE: Even though I have an asynchronous "one-way" exchange pattern it replies twice to the caller with "empty" messages before my real response. So I get three responses. The first two ...
2
votes
1answer
103 views

WP8 IMobileServiceTable - Detecting End of Asynchronous Call

My app makes a simple call the an Azure Webservice database and I want to copy the returned rows into a new list. private IMobileServiceTable<dbEntry> entryTable = ...
0
votes
0answers
188 views

In VBA, how to use TextStream with something other than files?

This is strongly linked to this other question, which currently has an open bounty: Alternative to MSXML2 for VBA retrieving large HTTP requests, with access to readyState 3? But since I have been ...
1
vote
0answers
103 views

The asynchronous operation has already completed

I have a VB.net app with a DataGridView displaying a list of jobs, retrieved from a SQL query into a DataTable, then a DataView and finally a BindingSource for the DataGridView.DataSource. I have ...
1
vote
0answers
309 views

Background worker as - AsyncTask or Loader or Fragment without UI or Service

I know there are many threads about this topic, but: I have a simple task. public class MyTask extends AsyncTask<T, U, V> { ... @Override protected Void doInBackground(T... params) { ...
0
votes
1answer
52 views

C# single client that connects to several server

I have to design a tcp-ip application based on a single client that open several connections against external server. Obviously I thought to open a different socket for each server (max 12) and use an ...
0
votes
1answer
152 views

C# Asynchronous read over tcp/ip

I need to create a client that connects to a medical machine over tcpip. This machine, upon internal event, send me one or more XML file with the data I need to process. As these events are not ...
0
votes
1answer
70 views

mongojs implementation of non blocking query

I know this must be a really silly question, but I can't figure out how to make it work. I'm learning node.js and mongojs, and this is my problem: This is my server.js server.get("/", ...
0
votes
1answer
45 views

Synchronize asyncronous responses in .NET for recording results to file

Let's say I have the following code within another method: Parallel.For(0, pageCount, page => { var request = (HttpWebRequest)WebRequest.Create( ...
0
votes
0answers
101 views

How can I know when all my distributed workers have completed processing an overall job?

I have a system where users upload very large files, with one record per file. Due to the long time it takes to process each line I do not process them immediately. I read through the file and add a ...
2
votes
1answer
166 views

Gearman: is there still no way to retrieve custom data from a background worker?

First things first, I'm aware of this question: Gearman: Sending data from a background worker to the client What I want to know, is it still the case with Gearman? I'm planning on sending a batch ...
0
votes
4answers
381 views

PostSaveDocument call agent asynchronously

I have an Xpage page with a single Notes document datasource. After saving a document I want to (conditionally) trigger an agent. The agent takes some time to process and we don't want the user to ...
0
votes
1answer
291 views

Submit Contact form asynchronous and show Result in a Modal like fancy box using PHP

I have a simple Contact form and i have to submit it asynchronous and then i have to display result in a Modal like window more like Fancybox. <form name='contactForm'> <input ...
0
votes
2answers
584 views

C # asynchronous processing operations error

WEB applications based on. NET MVC 3 to establish the C # asynchronous operating value error, code as follows: public ActionResult Contact () { / / Create an ...
1
vote
4answers
245 views

Does Asynchronous processing actually help if in case we have database calls into it?

In a server, if I have a async function which will process some database calls and fetch some records from the table. If the server receives high number of requests, that database call might actually ...
0
votes
1answer
371 views

How to show upload percentage in asp.net

I have a asynchronous file upload inside the update panel and it uploads the file once the file is selected. When the file is uploading I am showing a update progress. Here I have a Image saying ...
2
votes
2answers
1k views

How to implement asynchronous loading in ASP.NET page?

How to implement asynchronous loading in ASP.NET page? I have 3 sections in my ASP.NET page. All the sections are independent. LoadSection1(); LoadSection2(); LoadSection3(); Each section is ...
0
votes
2answers
418 views

Asynchronous Webservice

I wanted to clear something about Asynchronous Webservices. I read that weblogic give you the ability to create Asynchronous Webservices. but I also read that it's only supported as log as the ...
1
vote
0answers
393 views

Suggest best way for asynchronous loading in ASP.NET page

I am developing a report (ASP.NET page) using Telerik RAD Grid controls and update panels. I have 3 filters to load the report. I am updating the report based on the filter selection. I have 3 ...
4
votes
1answer
747 views

Getting output from and giving commands to a python subprocess

I am trying to get output from a subprocess and then give commands to that process based on the preceding output. I need to do this a variable number of times, when the program needs further input. (I ...
0
votes
1answer
251 views

Page Lifecycle and Asynchronous Requests in C# asp.net web forms

If I send an HttpWebRequest and send it out with BeginGetResponse with a callback, my callback never gets hit. THe page finishes before the response is given. How do I grab the response? I have ...
0
votes
2answers
193 views

Learning about IAsyncResult requests and Threads in C#

I have the following lines of code in a submit button when a file gets uploaded. So the request starts and runs in the background and tells the user that the file is processing. // Prepare the query ...
5
votes
1answer
432 views

Timing out the execution time of a controller/method in Spring

I have a Spring controller that is currently being accessed normally, but i want to change the implementation in such a way that if the task the controller is performing takes more than a defined time ...
3
votes
2answers
2k views

FileSystemWatcher not working properly

I am using FileSystemWatcher to scan a folder where files are being uploaded from the web application. I have more than 1000 files being uploaded to the folder. Now, the problem is that the ...
1
vote
2answers
214 views

shared_ptr and logical pointer ownership use-case in a complex design

I have an Object A that contains a shared resource (shared_ptr) r, A is the creator/owner of r upon construction the object "registers" its r with another object B. Object B holds a reference to A's r ...
4
votes
4answers
3k views

Background network calls - iOS

I need to implement posting some data to a web server in the background. Just to clarify, by "in the background", I don't mean the normal way of showing a spinning icon and posting data to a web ...
4
votes
1answer
195 views

Must call EndRead() in ALL cases?

Related to asynchronous IO using a (bidirectional) NetworkStream, MSDN says that "EndRead must be called once for every call to BeginRead." Is this true even for cases where the EndRead() will throw ...
1
vote
3answers
324 views

Silverlight sequential operation for Asynchronous operation

I have 3 operation that need to process sequentially, they are GetMainInformation GetDetails1 GetDetails2 I'm doing this by code like below but I think it isn't clean. I want to know an ...
2
votes
5answers
2k views

C# .NET Web Service Asynchronously

I'm trying to implement an API that performs some really lengthy tasks using a Web Service. I basically want the Web Service to kick off a thread that performs the lengthy task and leaves it running ...
0
votes
3answers
424 views

asynchronous processing in asp.net

on my page load I am loading few list, also on my page I have filter conditions which is taking around 30 seconds to get the filtered records from the database, reason : Database is big and I have to ...
0
votes
2answers
1k views

Returning value from a google maps callback function

Hi I am working with google maps API I have this huge code, so I dont want to scare away people with code Basically this is what I need to do I have a javascript(1) function that I call from Html ...
1
vote
1answer
110 views

What is considered one of the best asynchronous programming ideas based open source code(software) to read?

I am looking to learn asynchronous programming and would like to start reading some open source code based on that. Is there a good open source library or application that uses the best practices of ...
6
votes
1answer
809 views

Asynchronous processing asp.net mvc with client side progress feedback

I am building an image management tool and I want to know how I can create a Vimeo-like experience. Description of what needs to happen The user will be able to upload many potentially large images ...
0
votes
1answer
199 views

How run and link AsyncBindingList to listbox

I have an application where I list all the files from the folder selected. And I have a class called FileManager which contains, AsyncBindingList which is connected to my listBox on the form. here is ...
1
vote
1answer
1k views

C# process cannot access file because it is being used by another process

Please help me out with the problem I am facing. I am writing an importer in C# for an xml file. Every time I run the import I need to download the XML file from a URL. I have wirtten the following ...
0
votes
2answers
946 views

Run a background asynchronous process from DLL

I have a DLL that I would like to run as a background process. So in the C# Application I would first like to run this process in the chosen DLL then let my Application continue with the DLL processes ...
3
votes
1answer
399 views

calling a C++ function from C# and sending data back to the C#

I have a C# application that calls functions in a DLL written in C++. The calls work fine and the code is executed using this method in the C#: [DllImport("myDLL.dll")] public static extern void ...
5
votes
4answers
238 views

Why does using the Asynchronous Programming Model in .Net not lead to StackOverflow exceptions?

For example, we call BeginReceive and have the callback method that BeginReceive executes when it has completed. If that callback method once again calls BeginReceive in my mind it would be very ...
0
votes
1answer
104 views

Optimal language for asynchronous processing of information

Before delving into the heart of the matter, first I will have to outline the current scenario. I currently have a php script that executes through CLI to process some data. It goes something like ...
0
votes
1answer
278 views

Staged, Asynchronous Processing in Servlet Containers?

I've been reading a bit about Stage Event Driven Architecture (SEDA) and the concept of asynchronous I/O. I've come across a few people talking about implementing SEDA to handle HTTP requests. ...
7
votes
3answers
2k views

How to run a PHP script asynchronously?

I am creating a PHP script that will be run via the command line. As part of this script, there are times where I might need to spawn/fork a different script that could take a long time to complete. I ...

1 2