"Promises" are a particular tactic for deferred computing, suitable for several styles of concurrency: thread and event loop concurrency for local computation, and both synchronous and asynchronous remote messaging.
0
votes
1answer
16 views
AngularJS: route resolve promise is cached
In the first sample code all works as should - on every page route change we check some conditions ($timeout) and resolve a promise:
JSFiddle Var sample code
In the second sample we move var ...
0
votes
1answer
31 views
Handling promises when dealing with event listeners
Currently I'm using promises in an AS3 project but this is also relative to JS projects.
Say I have this code, in AS3:
public function getFeed():Promise
{
var request:URLRequest = new ...
0
votes
1answer
31 views
AngularJS: how to preventDefault() of an event after promise completes?
I have some code like this:
$scope.$on("$locationChangeStart", function(event, newPath, oldPath) {
// Do some sync checks
if (!$scope.isPageAllowed($location.path()))
{
// ...
0
votes
3answers
30 views
Wait until scope variable is loaded before using it in the view in angular.js
I've seen this and this but it seems like there might be a simpler way.
In my view I have several menu options that are controlled through permissioning - i.e., not everyone can see a "Dashboard" ...
0
votes
1answer
22 views
Why does my Q chained promise rejection not behave the way I expect?
What am I doing wrong here? I have a piece of code that looks something like this:
function getUserList(requestingUserId){
return customerRepo.getCustomersAllowedByUser(requestingUserId)
...
0
votes
1answer
41 views
Is this implementation a fair example of a Promise in PHP? [closed]
I've been reading about the Promise pattern, and I tried to code up a version in PHP with the help of a few examples and my own understanding of how it should work. Is what I came up with a reasonable ...
1
vote
2answers
43 views
JQuery - Callback for offset()/position()
I have a div containing a list elements, which have static positioning and for each element I want to
Record its absolute positioning using the offset() method
Change its positioning to absolute, ...
0
votes
3answers
44 views
Promise chaining not working. Why?
I have following code to select multiple contacts and the filter only names that have XYZ. I am using then and done to accomplish this filter. In my contacts, there is one contact named XYZ Dude and I ...
0
votes
3answers
46 views
jquery - do something after everything is done -
I have a set of functions to run, in sequence, but the first one has an asynchronous sub-function. I want the second highest-level function to run only after the async function completes. Any idea ...
2
votes
1answer
28 views
Loading data from service using $routeParam
I am trying to load a group of messages depending on an ID that is part of the app's route. The routeParams object appears to be a promise, and I'm not sure how to set it up so that it waits until the ...
4
votes
2answers
36 views
Q promise: are callbacks invoked in the same order as registered?
I'm using the Q promise library. My code relies on the fact that the callbacks for a single promise are executed in the same order as they were registered.
http://jsfiddle.net/HgYtK/1/
var deferred ...
1
vote
0answers
27 views
Are Underscore's function composition methods now eclipsed by JS Promises libraries? [closed]
I'm learning Underscore and I see a lot of methods like:
var wrappedFunction = _.wrap(myFunc1, myFunc2);
// myFunc2 will only be invoked when myFunc1 has completed
wrappedFunction();
Are there ...
0
votes
1answer
19 views
Stop execution after promise times out
I've been using the Q module to implement promises on a project I'm working on.
I'm using the static method Q.fncall() to create a promise out of a node.js style function (based on callbacks ...
0
votes
1answer
20 views
jQuery async calls on array
I'm trying to get the following scheme to work: I have a an ajax call that returns an array of objects (promise).
Now, I have a succeeded function that does additional handling on each item in the ...
-1
votes
0answers
12 views
jqMobi / AppFramework and Promises/Deffered
How do you solve the problem Defferd / Promise() missing functionnalities with jqMobi framework, now called Intel AppFramework?
Many thanks
0
votes
0answers
31 views
Why Meteor.http.call doesn't work on the server; Or how to use defered on the Server
this is not the question but already the answer.
I ran a Defered Object (with Q.defer()) in my Meteor Method on the Server and tried to make Meteor.http.get(..) call in the then() callback. And the ...
0
votes
1answer
98 views
AngularJS chaining http promises $q in a service
i have problems when it comes to $http promises in angularjs. i am doing this in my service: (the getSomething function should chain two promises)
the second function uses a external callback ...
0
votes
2answers
33 views
Binding a promise handler function to an object
I have some code like:
var bar = foo().then(function success(value) {
// compute something from a value...
}, function failure(reason) {
// handle an error...
});
How do I bind the failure ...
0
votes
2answers
63 views
Angular HttpPromise: difference between `success`/`error` methods and `then`'s arguments
According to AngularJS doc, calls to $http return the following:
Returns a promise object with the standard then method and two http specific methods: success and error. The then method takes two ...
1
vote
1answer
112 views
Using deeply nested object from JSON in AngularJS - strange behavior
I'm trying to understand how AngularJS sees an object from a deeply nested JSON. Here's an example plunker. The data comes from service and is assigned to $scope.data. The javascript code seems to ...
-1
votes
2answers
57 views
Chained promises not passing on rejection
I am have a problem understanding why rejections are not passed on through a promise chain and I am hoping someone will be able to help me understand why. To me, attaching functionality to a chain of ...
1
vote
2answers
48 views
Getting “Unknown provider: $qProvider <- $q” when fetching the defer/promise from my AngularJS injector
I am trying to create a simple example where I get the promise/defer object from AngularJS's service solution:
var $q;
function init() {
var $injector = window.angular.injector();
...
1
vote
2answers
59 views
Looping and Chaining Ajax Calls using deferred
I've seen many questions about this but nothing seems to give the right answer for my case.
I've seen also answers that uses .pipe but I'm looking for an answer that uses .then.
Okay. I need to do 3 ...
2
votes
2answers
57 views
How do async tests work in intern?
How do asynchronous tests work in Intern testing framework? I have tried to get them run exactly as in the example, but the async test passes immediately without waiting for the callback to be run.
...
1
vote
1answer
32 views
Is there a packaged_task::set_exception equivalent?
My assumption is that packaged_task has a promise underneath. If my task throws an exception, how do I route that to the associated future? With just a promise I could call set_exception
– how do I ...
0
votes
0answers
31 views
jQuery's Deferred callback execution sequence
jQuery's Deferred/promise has two outcomes: resolved and rejected. You can attach callbacks to the Deferred which are associated with either state. The conditions for attachment are done ...
0
votes
2answers
54 views
Chaining 2 asynchronous calls (promise API) to run serially
This is similar to a question I posted today, but needs the request chained serially. I have two asynchronous requests, where the second request needs the result of first to send the query.
var ...
1
vote
2answers
72 views
Promise API - combining results of 2 asynchronous call
With promise API, how to send two asynchronous request in parallel, and resolve the combined result as the response.
var get = function(id){
var res1, res2;
var deferred = ...
0
votes
1answer
44 views
callback function access to closure variables?
The following piece of code has a bug but it opened an interesting question. Its using an angular's $http service which returns a promise. Once resolved, the callback function does not have access to ...
1
vote
1answer
71 views
How this and $(this) end up being the same when extending jQuery?
I'm trying to work with a plugin which extends jQuery like so:
$.extend({
StatelessDeferred: function () {
var doneList = $.Callbacks("memory"),
promise = {
...
0
votes
1answer
29 views
Equivalent behaviour of 'jQuery.active' in q
In my c# selenium webdriver tests I occasionally have to make use of:
public void WaitForJQuery(TimeSpan timeout)
{
var wait = new WebDriverWait(driver, timeout);
wait.Until(d => (bool)(d ...
0
votes
0answers
54 views
in VS2012, the std::future_error code() doesn't match its what()
Following Kerrek's guide in What is std::promise?. I try similar sample codes but it doesn't achieve what I expect.
That is, the caught future_errc error's member function code() doesn't match its ...
-1
votes
2answers
242 views
How to cleanly encapsulate and execute in sequence a series of background tasks in iOS?
My app includes a back-end server, with many transactions which must be carried out in the background. Many of these transactions require many synchronous bits of code to run.
For example, do a ...
1
vote
2answers
57 views
how to transform a array of promise object to a promise object of a array?
Is there a way to transform a array of promise object to a promise object of a array? It's kind of like
$q.all(promises)
in angluarJS.
Here's my code:
var getPages = function(courses){
var ...
0
votes
1answer
75 views
In Ember, how to defer readiness, and put AJAX result into a Controller?
I understand that Ember.Application now has deferReadiness that lets me wait for the return of an AJAX call before initializing the app. However, in the example in the api docs, they put the value ...
0
votes
2answers
103 views
Angularjs load resources on after the other using promise
Inside a service, I would like to load a resource using $http. Once loaded resource, I want to store it in a variable. Then, I need to load a child resource and store it too. I know that the promise ...
1
vote
1answer
33 views
Async Template loading
I'm trying to asynchronously load 25 html templates
[urgent]
here's my code:
var loopingLoadTemplate = function(index){
var name = names[index];
$.get('templates/' + ...
1
vote
1answer
284 views
AngularJS defer error: Argument 'fn' is not a function, got Object
I'm attempting to make my app gather the data before changing the route, as shown on many a video from John Lindquist: ...
1
vote
2answers
60 views
AngularJS Scopes and Deferreds
I have a service that does something hard and returns a promise:
.factory('myService', function($q) {
return {
doSomethingHard: function() {
var deferred = $q.defer();
...
0
votes
2answers
54 views
loading handlebars template asynchronously
I'm trying to write a function that will give me a compiled handlebars template (I have all my templates in separate files) using an ajax call to get the template and compile it for use, but I need to ...
0
votes
2answers
61 views
Combining promises with Q
In jquery, I can combine promises as follows:
var Promise = $.when(func1.execute(), func2.execute());
Promise.done(function (data1, data2) {
// code here
}
How would you rewrite this using Q?
...
0
votes
2answers
67 views
Why are multiple 'fail' handlers being called when several 'then' handlers are chained to a deferred?
My project involves workflows that uses muliple API's that return deferred promises. I am using jQuery 1.8
I understand that the difference between .done() and .then() is that .then() returns a new ...
3
votes
1answer
92 views
AngularJS - two-way binding promises - handling rejections
I've found out the hard way that when you two-way bind a promise, angular resolves the promise for you and does bind the actual promise. My question is then, how would one handle a rejected promise?
...
0
votes
1answer
106 views
Unit-test promise-based code in Angular
I'm having hard times trying to test promise-based code in Angular.
I have the following code in my controller:
$scope.markAsDone = function(taskId) {
...
1
vote
1answer
80 views
Angularjs - watching a promise - getting undefined
I know that the templates can bind to either a promise or a real value, and when that value changes the template is updated.
I want to do something similar in a directive, where I watch for changes ...
0
votes
2answers
23 views
Returning a promise to the caller
I have a function HelloWorld where no promises is returned to the caller. I wonder if it is possible to have this function to adjust to return a promise.
For example:
function HelloWorld() {
// ...
1
vote
1answer
73 views
How to always run some code when a promise is fulfilled in Angular.js
In my Angular.js application, I'm running some asynchronous operation. Before it starts I cover the application with a modal div, then once the operation is complete, I need to remove the div, whether ...
0
votes
1answer
28 views
AWS Flow Framework, .get on Promises waits forever
I'm using the samples for the AwsFlowFramework, specifically helloworld and fileprocessing. I have followed all the setup instructions given in: ...
3
votes
3answers
169 views
Cancellation with Future and Promise in Scala
This is a followup to my previous question.
Suppose I have a task, which executes an interruptible blocking call. I would like to run it as a Future and cancel it with failure method of Promise.
I ...
0
votes
1answer
80 views
How to test a stub returning a promise in an async test?
How can I test this in a async manner?
it('Should test something.', function (done) {
var req = someRequest,
mock = sinon.mock(response),
stub = sinon.stub(someObject, 'method');
...



