--- title: window.requestIdleCallback() slug: Web/API/Window/requestIdleCallback translation_of: Web/API/Window/requestIdleCallback ---
O método window.requestIdleCallback()
enfileira uma função para ser executado durante períodos onde o navegador está ocioso. Isso permite que desenvolvedores realizem tarefas de baixa prioridade em relação a o event loop em segundo plano. As funções são geralmente chamadas na ordem first-in-first-out (primeiro-a-entrar-primeiro-a-sair); Contudo, callbacks nos quais tem um timeout especificado, podem ser chamados na ordem out-of-order (fora-de-ordem) se necessário, afim de executar antes do tempo limite.
Você pode chamar requestIdleCallback()
com uma função callback ociosa para agendar outro callback para ter lugar não antes da próxima passagem pelo event loop.
timeout
é altamento recomendado, caso contrário, é possível que vários segundos passem antes que a função callback seja chamada.var handle = window.requestIdleCallback(callback[, options])
An ID which can be used to cancel the callback by passing it into the {{domxref("window.cancelIdleCallback()")}} method.
callback
options
{{optional_inline}}timeout
: If timeout
is specified and has a positive value, and the callback has not already been called by the time timeout milliseconds have passed, the callback will be called during the next idle period, even if doing so risks causing a negative performance impact.See our complete example in the article Cooperative Scheduling of Background Tasks API.
Specification | Status | Comment |
---|---|---|
{{SpecName('Background Tasks')}} | {{Spec2('Background Tasks')}} | Initial definition. |
{{Compat("api.Window.requestIdleCallback")}}