Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

114
Vistas
How to wait for the completion of the entire process of a function called by events?

I have a function that is triggered by an event, is there any way to wait for the completion of the entire process of this function, even if the event is triggered other times, so that only after that it continues processing the other triggers received?

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

As far as I understood you need some sort of a queue. You need to push events there and process them one by one. Maybe something like this:

const queue = [];

function eventHandler(event) {
  queue.push(event);
  if (queue.length === 1) {
    doTheJob();
  }
}
async function doTheJob() {
  if (queue.length > 0) {
    const event = queue[0]
    // do the job with the "event"
    await work1();
    await work2();
    await workN();
    queue.shift();
    doTheJob();
  }
}
about 4 years ago · Juan Pablo Isaza Denunciar

0

I managed to find a solution like this:

var time = 1;
// SIMULATES THE ACTIVITIES OF THE EVENT
setInterval(async () => {

  await process();

}, 1000);

// THE PROCESSING THAT OCCURS WHEN THE EVENT IS TRIGGERED
async function process() {

  time += 4000
  const myPromise = await new Promise(async function (myResolve, myReject) {

    setTimeout(async () => {
      console.log(`Process executed`);
      myResolve("Process completed");
    }, time);

  });//End myPromise
  var result = await myPromise;
  time = time - 4000
}

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda