O jQuery 1.5 traz o novo objeto Adiado e os métodos anexados .when
,.Deferred
e ._Deferred
.
Para aqueles que não usaram .Deferred
antes, eu anotei o fonte .
Quais são os possíveis usos desses novos métodos, como vamos ajustá-los aos padrões?
Eu já li a API e a fonte , então sei o que ela faz. Minha pergunta é como podemos usar esses novos recursos no código cotidiano?
Eu tenho um exemplo simples de uma classe de buffer que chama a solicitação AJAX em ordem. (Começo seguinte depois que o anterior termina).
/* Class: Buffer
* methods: append
*
* Constructor: takes a function which will be the task handler to be called
*
* .append appends a task to the buffer. Buffer will only call a task when the
* previous task has finished
*/
var Buffer = function(handler) {
var tasks = [];
// empty resolved deferred object
var deferred = $.when();
// handle the next object
function handleNextTask() {
// if the current deferred task has resolved and there are more tasks
if (deferred.isResolved() && tasks.length > 0) {
// grab a task
var task = tasks.shift();
// set the deferred to be deferred returned from the handler
deferred = handler(task);
// if its not a deferred object then set it to be an empty deferred object
if (!(deferred && deferred.promise)) {
deferred = $.when();
}
// if we have tasks left then handle the next one when the current one
// is done.
if (tasks.length > 0) {
deferred.done(handleNextTask);
}
}
}
// appends a task.
this.append = function(task) {
// add to the array
tasks.push(task);
// handle the next task
handleNextTask();
};
};
Estou à procura de demonstrações e possíveis usos de .Deferred
e .when
.
Também seria adorável ver exemplos de ._Deferred
.
Vinculando ao novo jQuery.ajax
fonte de exemplos é trapaça.
Estou particularmente interessado em quais técnicas estão disponíveis quando abstraímos se uma operação é feita de maneira síncrona ou assíncrona.
._Deferred
é simplesmente o verdadeiro "objeto adiado" que .Deferred
utiliza. É um objeto interno do qual você provavelmente nunca precisará.