Asynchronous programming is simply allowing some portions of code to be executed on separate threads. It makes your applications perform better, be more responsive, and use the resources of the system they are running on to the fullest extent.
0
votes
0answers
47 views
how to run multiple threads from the same method with differant values
i have some code that should make differant plants grow at differant times....
but atm when the next plant is placed it just carries on the method instead of creating a new instance of that method.... ...
0
votes
1answer
22 views
Can I begin sending a web response before it is complete using Node.js?
The first portion of my response is static, I would like to go head and send that portion of the page and send the rest after it has been compiled. Is this even possible using node.js?
1
vote
2answers
88 views
What is the difference between making an Async web service call and making a Synchronous web service call in another thread?
And/or, when to use either one?
Is it a matter of preference or is there a technical difference?
Bit of background on why I am asking:
I have an app running a .NET 2.0 CF app and the user is making ...
0
votes
1answer
24 views
asynctargetingpack and webclient use in WPF
I am creating a sample app using vs2012 and targeting .net 4.0 and trying to use BCL portability pack for .net 4.
I have the following code
WebClient client = new WebClient();
string result = await ...
0
votes
1answer
30 views
Democratic queue in Sidekiq
Users can create a Project object that contain multiple tasks. When user tells the project to execute all those tasks are put on the default queue from Sidekiq.
The problem is: if a user creates a ...
0
votes
0answers
31 views
AngularJS app not bootstrapping Asynchronously if there is a javascript error
I have an angularjs application inside a 'normal' web page that I asynchronously bootstrap using the angular.bootstrap method. Here is the code that I use :
var elm = angular.element("#my_app");
...
1
vote
4answers
71 views
Do async GET like in a loop but wait for response for each
I've googled this and cannot find an answer.
I want to make a GET to a url in Scala/play framework and then do something with the result. If the result contains what I want then I want to call it ...
2
votes
2answers
90 views
Is Javascript synchronous(blocking) or Asynchronous(nonblocking) by default
I am trying to grasp on Javascript Asynchronous functions and callbacks.
I got stuck on the concept of callback functions, where I am reading on some places: they are use to have sequential execution ...
0
votes
1answer
31 views
gwt, async callbacks and DRY
According to the official doc, an async callback should have 2 interfaces, one of them could be generated from the other. Not mentioning, it is very hard to follow call hierarchy this way. Isn't there ...
-1
votes
1answer
34 views
parsing the array of json objects embedded in the url
However i keep getting these exceptions. I have also posted my logcat below. I am new to android so i need help. The url consists of an array of json objects.
[
{
"codeField":"COMPSCI 101",
...
0
votes
0answers
23 views
async image loading in grid view
I am implementing AQGridView to display image url's from web service using AsyncImageView for lazy loading. Grid's and cell are showing but images are not loading in cell. I am following ...
-1
votes
2answers
69 views
Parsing array of json objects in android with asynctask [closed]
I want to parse data from this url using the asynctask. I am new to android and i am having compile time errors. Please correct me as i am having issues trying to get rid of compilation problems. I ...
0
votes
2answers
51 views
Asynchronously populate gridview on button click
I would like to populate a Gridview which is inside an update panel on button click. Currently the gridview is getting populated however doesn't show up on screen. What am I missing?
Below is the code ...
0
votes
1answer
39 views
Jquery function doesn't wait result of Javascript function result why? [duplicate]
I have 2 method. second one calls the first one. When I put an alert function into the first one I can see the return value. But second function see the value as undefined. I couldnt understand why 2. ...
0
votes
2answers
40 views
Asynchronus call in PHP Web page
I am new to PHP. I have a block of code on my webpage which I want to execute asynchronously. This block has following :
1. A shell_exec command.
2. A ftp_get_content.
3. Two image resize.
4. One ...
0
votes
1answer
41 views
Best way to make multiple asyn calls from a REST Service to external soap webservices
I have a WCF Service which inturn call 4 soap webservices (total response time for 4 services are more than a minute) for a single transaction and finally it will log the transaction status in the SQL ...
2
votes
1answer
56 views
Setting the height & width of a div's background image, without knowing them in advance
using jQuery:
Whenever someone adds a background image to a div, the width and height of the background image need to be known in advance.
e.g.
$("#id-of-some-div").css(
{
backgroundImage: ...
0
votes
2answers
51 views
How do I handle slow readers in Netty?
In my application I have can have thousands of readers each fetching documents.
I need to have the ability to buffer slow readers so that I can move on to handle other readers so that I can get ...
0
votes
1answer
35 views
Having a HTTP request within another request and then updating the UI
I have an HTTP request within another request, as the second request relies on the first request's response. This will be contained in a single method that will be used within multiple view ...
0
votes
1answer
37 views
Should I be chaining methods and functions in node.js and Express?
Just like everybody else, it would seem, I have begun to play around with node.js and the Express framework.
Whilst I am reasonably confident with client-side Javascript, relying heavily on JQuery of ...
0
votes
0answers
23 views
Asynchronous Web Service invocation in Java
I've been trying to understand the nuances of asynchronous vs synchronous web service calls. I wish to find out if its possible to write a client which terminates after invoking the web service.
In ...
1
vote
2answers
46 views
Mutex map data structure
the problem
I have a directory D that I want to put (K, V) pairs into
void save(K, V) saves file name K with contents V to directory D
Has "fire and forget" semantics - function may return before ...
0
votes
2answers
43 views
Using Tasks as a way to separate computation of results from committing results
An API pattern we are considering for separating the work of calculating some results from the committing of those results is:
interface IResults { }
class Results : IResults { }
...
0
votes
1answer
56 views
Asynchronous send to a queue using Spring Jms issue
I have a requirement when I need to write asynchronously to a queue in activemq. I am using Spring Jms to do it. This is the wiring in my spring context file
<bean ...
2
votes
0answers
101 views
+50
Non - blocking RPC invocation, using gSoap
Is this even possible?
I know, I can make a one-way asynchronous communication, but I want it to be two-way.
In other words, I'm asking about the request/response pattern, but non-blocking, like ...
3
votes
0answers
25 views
MIDI beat clock in Java
I'm creating a drum machine and I'm having some problems with outputting MIDI beat clock.
For simplicity, I've set the internal clock to run by calling Thread.sleep(_time), where _time is the amount ...
1
vote
0answers
81 views
Async XML Reading Windows Phone 8
I'm currently reading xml files with XDocument.
The XML is being read in a method with parameters, which looks currently like this:
private MyXmlFiles_Row GetXmlData(int Year, TAN ANAG, TVerdTyp ...
0
votes
0answers
30 views
How to create a download page using asynchronous controller in ASP .NET MVC4
I am creating a download page in ASP .NET MVC4. I believe this is a suitable case for using Asynchronous Controller since streaming a file is an I/O process and a file size can be in MB (even a GB).
...
1
vote
0answers
21 views
How Can I Reliably Complete Asynchronous Operations on Firefox browser close?
I'm writing a browser extension for Firefox that uses IndexedDB to save local data. When the browser closes, I'd like to write the latest data out to my IndexedDB. However, IndexedDB is entirely ...
0
votes
0answers
24 views
Implementing native DB module in Node.js
I'm implementing my own native DB and Node.js module for it. One of its functions is obviously iterating over results of a query in async way.
Studying existing DB modules, I found two approaches. ...
1
vote
0answers
29 views
Starting and Forgetting an Async task in MVC Action
I have a standard, non-async action like:
[HttpPost]
public JsonResult StartGeneratePdf(int id)
{
PdfGenerator.Current.GenerateAsync(id);
return Json(null);
}
The idea being that I know ...
0
votes
2answers
42 views
Control flow: Run two asynchronous array maps
I have two functions that are asynchronous – they accept a function as a parameter which it called when it is done (callback).
function a(item, cb) {
someAsyncOperation(function () {
cb(item)
...
2
votes
2answers
30 views
How do I trigger something only when batch of getJSON instructions completes?
Here's some of my code:
for (var i = 0; i < recordList.length; i++) {
var recordID = recordList[i];
populateDataRow(i, recordID, columns)
};
console.log("done");
Here populateDataRow is a ...
0
votes
1answer
29 views
Synchronization when implementing push , iOS
I have a very special problem of synchronization with my application that i would like to share with you and get some ideas that hopefully will help me solve it.
I am developing an application that ...
5
votes
2answers
89 views
Are unresettable “flags” threadsafe in C#/.NET?
(Note: I already asked this question, but the answer was specific to Java, and so I am asking the same question for C# and the .NET framework. It is NOT a duplicate.)
I have been using this pattern ...
0
votes
0answers
16 views
why spring @async not working with @Transitional
i have a service just like
@Service
@Transitional
public class LogService {
@Autowired
private LogMapper logMapper;
@Async
public void insertLog(OperLog ol){
logMapper.insert(ol);
}
@Async
...
-3
votes
0answers
43 views
asynchronous thrift client C++
I'm looking for asynchronous thrift client ++.
I just search for them on the thrift's website (http://thrift.apache.org/docs/), but they provide no asynchronous client example.
Could you show me some ...
0
votes
0answers
15 views
cppcms session in async. mode
I use this code to run async. server:
int main(int argc, char ** argv)
{
cppcms::service service(argc, argv);
booster::intrusive_prt<gameServer> c = new gameServer(service);
...
0
votes
1answer
30 views
Are unresettable “flags” threadsafe in Java?
I have been using this pattern for a while, but I only recently came to think that it might not be OK to do this. Basically, I use some variant of this pattern:
public class SampleJavaAsync
{
...
1
vote
2answers
70 views
Downloading large files asp.net mvc 3?
I have a large pdf file (upto 2 GBs) on a database server which I want to send to client for download. Also, I have size limitations on my web server and cannot store complete file on it, after ...
1
vote
1answer
21 views
Showing Progresscircle in Asynctask
I want to show an progresscircle while a chat is loading. So I put some progressbar in, visibility set to invisible. Now I set in onPreExecute() the visibility to visible and in onPostExecute() to ...
0
votes
2answers
14 views
Why async.map function works with the native fs.stat function?
async.map(['file1','file2','file3'], fs.stat, function(err, results){
// results is now an array of stats for each file
});
As per documentation, the second argument is:
iterator(item, ...
1
vote
0answers
140 views
Cannot access a disposed object. Asynchronous print of messages in second form
Asynchronous print of messages in second form.
System.ObjectDisposedException in System.Windows.Forms.dll during
close of second form.
MainForm runs SecondForm.
SecondForm runs message generator ...
1
vote
0answers
20 views
WCF Async method works on Windows 7 host, but throws signature Exception on XP machine
My code (target framework 4.0, x86 architecture) works on several Windows 7 machines (both client and server) but throws an Invalid Async Begin method signature Exception on Windows Xp (same .NET ...
0
votes
1answer
36 views
How the Node.js async eachLimit works in this situation?
I wrote a little async script to batch insert a lot of JSON files into a MongoDB sharded cluster. This is my first time with this module (and I'm still learning Node.js). I don't know if I'm doing it ...
6
votes
4answers
106 views
Javascript Async=true Attribute
I see this code sample in a certain unnamed vendor's documentation. It appears to load a script asynchronously, then invoke a function from it thereafter. I realize that the if-undefined check will ...
0
votes
2answers
43 views
nodejs using callback and event
I am new to nodejs programming. so be patient with me.
I have two nodejs modules. One passes passes a message to another nodejs module. the second processes it and pass result back
to the first ...
1
vote
3answers
75 views
Async two-way communication with Windows Named Pipes (.Net)
I have a windows service and a GUI that need to communicate with each other. Either can send messages at any time.
I'm looking at using NamedPipes, but it seems that you cant read & write to the ...
0
votes
1answer
33 views
Want to pass a variable to node async's map method
I'm using node async, and I'd like to pass a variable to the method that it uses within the second parameter... e.g:
async.map(submissions, addScore, function(err, submissions) {
if ...
0
votes
1answer
25 views
What is the issue with with synchronization in nodejs+mongoose+async with the following code?
What is the issue with the following code? I have collections of Fruits, Vegetables, and Candy in mongo. "testlist" contains strings containing food that fall under one of the three categories to be ...



