The deferred tag has no wiki summary.
15
votes
2answers
193 views
What is the difference between .resolve() and .promise()?
I'm digging into jQuery's deferred features. I've tried several examples on the internet. I understood its concept, but I don't understand the difference between resolve() and promise().
What are ...
13
votes
2answers
512 views
What are the differences between Deferred, Promise and Future?
What are the differences between Deferreds, Promises and Futures? Is there a generally approved theory behind all these three?
7
votes
3answers
262 views
How to chain ajax calls using jquery
I need to make a series of N ajax requests without locking the browser, and want to use the jquery deferred object to accomplish this.
Here is a simplified example with three requests, but my program ...
5
votes
3answers
227 views
What is the most concise way to use jQuery deferred pipe?
I am designing a javascript API which wrap's my REST API. I generally want to avoid lots of verbose and confusing nested callbacks and have been reading up of the Deferred jQuery goodness.
Let's ...
5
votes
1answer
76 views
Strange behaviour in linq c# under delayed execution
Hi, I have the following code which produces a strange behaviour.
A property of an instance of objects contained in an IEnumerable produced by linq to Objects, does not get updated in subsequent ...
5
votes
2answers
405 views
Twisted deferred vs blocking in web services
I'm struggling to produce the same behavior in web service code that uses Deferred objects as in code that does not. My objective is to write a decorator that will delegate processing of any method ...
3
votes
1answer
75 views
What's the difference between a Deferred object and its own promise object?
Let's create a simple Deferred object:
defer = $.Deferred( function ( defer ) {
setTimeout( defer.resolve, 3000 );
});
The above Deferred object will be in the "pending" state for 3 seconds, ...
3
votes
3answers
132 views
Attach a callback to a publish
I was wondering whether anyone knew of a way to attach an event/callback to a dojo publish when the event that is published completes.
I am publishing something as a delegated task, and when the ...
3
votes
1answer
158 views
Twisted, Deferred full traceback
I'm just learning to write applications on Twisted and so do a lot of mistakes.
Suppose there is a code:
d = defer.Deferred()
d.addCallback(self.start_app)
#d.addErrback(self.command_die)
...
3
votes
1answer
93 views
Deferred function resolution
Here is my situation:
I have an "interface" that each of my controls use for basic things, one of those things is validation.
So I have a processValidation function which runs through each of the ...
2
votes
1answer
72 views
Where does the response get stored after a Dojo JSONP request?
JavaScript
For example, I have the following JavaScript code (Dojo 1.6 is already loaded):
dojo.require("dojo.io.script")
// PART I
var jsonpArgs = {
url: "http://myapp.appspot.com/query",
...
2
votes
1answer
69 views
Dojo Deferred chaining
I am having trouble wrapping my head around how to make a Dojo Deferred work for the following scenario. Basically I have a function that is supposed to loop through a number of items and process each ...
2
votes
1answer
72 views
How to use “queue” or “deferred” in what condition? What are their designing purpose?
I am confused,is "queue" for animations and deferred for "ajax"? Could someone tell me some typical examples?
2
votes
1answer
108 views
Twisted deferred not callable after connection failure
Having my client factory here:
import logging, traceback
from twisted.internet.protocol import ClientFactory
from twisted.internet import defer, reactor, ssl
from twisted.application import service
...
2
votes
1answer
194 views
Anyway to pass the jquery deferred $.when an array? [closed]
Possible Duplicate:
Pass in an array of Deferreds to $.when()
Is there anyway to pass the jquery deferred $.when an array of ajax functions? Example:
var arr = [
...
2
votes
1answer
819 views
Lazy loading dojo tree powered by JsonRestStore and jsonp
I am trying to implement a cross domain, lazy loading tree using the Dojo toolkit. So far I have the top level nodes displaying correctly, but on clicking the expando I get a "deferred has already ...
2
votes
3answers
3k views
GWT problem, GWT.create(SomeClass.class) throw exception
i have a gwt project and using method GWT.create(SomeClass.class) throw exception.
The exception is :
Loading module: Webcharge
Top URL: ...
2
votes
3answers
88 views
JavaScript defering
Is placing <script> tags in just before closing the <body> tag the same sa placing them in the <head> section and specifying a defer="defer" attribute?
Thank you.
2
votes
1answer
600 views
Setting constraint deferrable doesn't work on PostgreSQL transaction
This is the situation: I have two tables where the one references the other (say, table2 references table1). When creating these tables, I did set the foreign key constraint as DEFERRABLE and the ON ...
2
votes
2answers
341 views
How to pickle a callback chain
I have a user-defined state machine in Twisted. The user can define handlers for different state changes, which I implement by using a Twisted deferred that I let them add callbacks to. Whenever I ...
2
votes
1answer
724 views
Google App Engine timeout: The datastore operation timed out, or the data was temporarily unavailable
This is a common exception I'm getting on my application's log daily, usually 5/6 times a day with a traffic of 1K visits/day:
db error trying to store stats
Traceback (most recent call last):
File ...
2
votes
1answer
181 views
Python Twisted - Prospective Broker and Server-Side Deffereds
Background:
I have a gtk client that uses twisted and perspective broker to perform remote object execution and server/client communication. This works great for me and was a breeze to start working ...
2
votes
3answers
1k views
twisted deferred/callbacks and asynchronous execution
hey guys, quick question about twisted and python...
im trying to figure out how can i make my code more asynchronous using twisted and ive come to sort of a dead end, if a function of mine returns a ...
2
votes
2answers
258 views
python twisted : retrieve a deferred's execution time
I would like to know how long a Deferred takes to execute, from the time the first callback is fired to the final result.
Any ideas on how to do that, possibly in a non-invasive manner ( meaning no ...
2
votes
1answer
139 views
twisted: no exception trace if error from a callback
Consider the following code:
df = defer.Deferred()
def hah(_): raise ValueError("4")
df.addCallback(hah)
df.callback(hah)
When it runs, that exception just gets eaten. Where did it go? How can I ...
2
votes
2answers
1k views
Making a python program wait until Twisted deferred returns a value
I have a program that fetches info from other pages and parses them using BeautifulSoup and Twisted's getPage. Later on in the program I print info that the deferred process creates. Currently my ...
2
votes
1answer
337 views
Use deferred to make an infinite call loop
Can we use deferred (http://twistedmatrix.com/documents/current/core/howto/defer.html) to make an infinite call loop in which a function adds itself to a deferred chain? I tried to do this, but it ...
1
vote
2answers
23 views
passing a function which makes ajax requests to $.when .done
I want to generate ajax requests on the fly, but I want to make sure I get a callback after they have all completed, so I want to wrap them within a .when .done statement like the following:
...
1
vote
0answers
36 views
How do I debug my asynchronous, promise based code if the library is swallowing all the exceptions?
The Problem
JSFiddle:
http://jsfiddle.net/missingno/Gz8Pe/2/
I have some code that looks like this:
var d = new Deferred();
d.resolve(17);
return d.then(function(){
//do some stuff...
})
...
1
vote
2answers
78 views
jQuery or plain JS: execute function after event listener returns
Let's say I have an event named "bar" on element #foo.
Is there a way I can use jQuery deferred objects to force a function to execute immediately after the bar event listener(s) has/have executed ...
1
vote
1answer
86 views
Python Twisted Deferred : clarification needed
I am hoping for some clarification on the best way to deal with handling "first" deferreds , ie not just adding callbacks and errbacks to existing Twisted methods that return a deferred, but the best ...
1
vote
1answer
51 views
jQuery Deferreds, .pipe and exceptions
I have code that looks somewhat like this (less ridiculous, of course):
var d = $.Deferred();
d.pipe(function() {
throw "a";
}).then(function() {
console.log("good!");
}, function(e) {
...
1
vote
1answer
45 views
Twisted: how to get error parameters from failure?
I have a piece of code:
from twisted.web.client import getPage
from twisted.internet import reactor
class TestError(Exception):
def __init__(self, message):
self.message = message
...
1
vote
1answer
79 views
How to catch exception in twisted Deferred callback?
from twisted.internet import reactor, defer
def getDummyData(x):
"""
This function is a dummy which simulates a delayed result and
returns a Deferred which will fire with that result. ...
1
vote
0answers
244 views
jQuery Deferred chain
I wish to create a animations chain, while I'm looping on a set of elements; the next loop step is called when the animations of the first step have been completed. The chain is something like that:
...
1
vote
1answer
135 views
Understanding $.Deferred() sequencies and $.fn.pipe()
I am stuck in this code:
reload: function() {
var self = this;
$.when(self.unload()).then(function() {
self.load();
});
},
load: function() ...
1
vote
3answers
140 views
C++ Template Instantiation - Why must mine always be explicit, unlike STL?
Any one of my C++ projects will generate a linker error unless I include an explicit template instantiation for every templated class/method/function I author and use.
STL classes seem to have no ...
1
vote
1answer
158 views
Twisted, Deferred Callbacks chain
After reading the documentation and a few use cases. The question arose how to use a chain of Callbacks. More precisely how to transfer data between Callbacks
Here is the code:
d = defer.Deferred()
...
1
vote
1answer
112 views
GWT messages interface with lookup support
I'm working on a new application and i need to make a messages interface with lookup, using the key to find the value (like ConstantsWithLookup, but capable to receive parameters). I have being ...
1
vote
1answer
106 views
Problem posting to datastore with deferred.defer tasks
I am trying to do this on Google App Engine in Python:
def add_to_db(person):
a = PersonDb(key_name = person)
# get some data
data1 = a.name
data2 = a.age
a.put()
for person ...
1
vote
1answer
395 views
CollectionView.DeferRefresh() throws exception
There are cases when you have many UI updates due a massive amount of INotifyChangedProperties events. In that case you might want to signal the changes to UI only once when all the properties are set ...
1
vote
1answer
2k views
GWT2.2 java.lang.RuntimeException: Deferred binding failed for a class (did you forget to inherit a required module?)
I'm using gwt 2.2, and encountered with the below exception:
18:43:48.896 [ERROR] [dms] Failed to create an instance of 'package.DMS' via deferred binding
java.lang.RuntimeException: Deferred ...
1
vote
1answer
76 views
How to pop a tkMessageBox in a twisted powered server
I have a server based on twisted reactor, and I need the following scenario:
the server can receive two types of request
ADD(x,y) and returns a sum
HUMAN_PERMISSION which returns true only if the ...
1
vote
1answer
70 views
Using Twisted Deferreds with parallel callbacks, when each is given a different argument
I want to create a deferred as follows:
f1(x1) and f2(x2) are performed in parallel (so to speak)
and after they finish, I run f3()
If I had the same parameters, I'd run:
d = Deferred()
...
1
vote
4answers
169 views
is there any cool Deferred library in ActionScript?
JSDeffered is so cool:
https://github.com/cho45/jsdeferred/blob/master/test-jsdeferred.js
we can write simplest async call chain .
next(function () { // this `next` is global function
...
1
vote
1answer
160 views
DataGrid deferred scrolling
how to enable deferred scrolling on DataGrid control? There are corresponding properties in ListBox, ListView, etc, but seems that such property for DataGrid simply does not exist
1
vote
1answer
353 views
twisted: check whether a deferred has already been called
This is what I'm trying to accomplish. I'm making a remote call to a server for information, and I want to block to wait for the info. I created a function that returns a Deferred such that when the ...
1
vote
1answer
335 views
twisted.protocols.ftp.FTPClient and Deferreds
Like most it's taking me a while to get used to using Deferreds but I'm slowly getting there. However, it's not clear to me how I can process a response and then call another FTP command using the ...
1
vote
1answer
192 views
twisted, unblock a threads.blockingCallFromThread when the reactor stops
it seems threads.blockingCallFromThread keeps blocking even when the reactor stops. is there any way to un-block it? the deferred that it is blocking on relies on an RPC coming from the other end, and ...
0
votes
2answers
31 views
jQuery Deferred object, calling functions in sequence
I'm confused about how to use jQuery's Deferred object, and the examples I've seen aren't helping me. What I want to do is 1.) get a calendar object via an ajax call, 2.) populate part of my global ...