The asynchronous-programming tag has no wiki summary.
0
votes
2answers
67 views
Stopping asynchronous systems
I have a system which has 5 services. Each are run in a separate process. They resemble an assembly line, in the sense that they mostly process messages in the same order 1->2->3->4->5, however it's ...
1
vote
0answers
90 views
Ways to do callback, when and where
I've recently started to do some more complicated programming with network-related work on iOS with Swift.
This introduced a lot of asynchronous code not only in networking but also some exchange of ...
1
vote
0answers
127 views
Callback pattern handling exceptions - Best practices in .NET 3.5
I am looking to implement the callback pattern with error handling such that error is caught and pass to the callback code with the response. Since I am using .NET 3.5, I cant use Task (TAP) pattern ...
1
vote
0answers
51 views
Synchronizing web ui and third party async services
I'm looking for concepts, approaches or even Framework/libraries to help me synchronize state reliably from web UI to a third Party Service.
For example: creating a JavaScript irc Client ui you need ...
1
vote
0answers
166 views
Gevent - Make blocking calls non-blocking
I have the blocking code shown below.
Is calling monkey.patch_all() enough/optimal to make it non-blocking?
Does Gevent handle iterations like these?
# front page
def front_page():
database = ...
1
vote
0answers
164 views
Is Windows Workflow Foundation appropriate for a CPU-heavy async application?
At one of the DevDays conferences a presenter said that Workflow Foundation isn't just for applications that require persistence, but they can make it easier to write and maintain Async WCF code and ...
0
votes
0answers
30 views
Using $timeout to normalize response time of a webservice call (Best practice question)
Consider you have a simple, standard $http request to a REST api:
...
function makeCall() {
var restURL = "http://my-rest-api/endpoint";
return $http.get(restURL);
}
...
If the execution ...