Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

159
Views
How can I construct this server backend route?

I'm working on a fullstack project where I need a way to effectuate the following scenario:

Upon a user submit event:

  1. A request is posted to the backend
  2. When the server receives the req., it begins executing some function
  3. The backend should run said function on a loop/indefinitely until the backend receives a subsequent request which instructs the server to cease executing the function after the function completes its current iteration.

I know there must be a way to work this out, but I haven't been able to figure out how to condense my problem/question into something I can google search my way through.

The following will hopefully help to convey what I'm trying to accomplish:

let run_function = false;

app.post('/start', (req, res) => {
  run_function = true;
  while (run_function)
    the_function(req.body);
}

app.get('/stop', (req, res) => {
  run_function = false;
}

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Seems like a job for setInterval() / clearInterval()

let handle

// Default 200ms interval
const startLoop = (body, interval = 200) => {
  clearInterval(handle) // stop any previous loops
  handle = setInterval(the_function, interval, body)
}

app.post("/start", (req, res) => {
  startLoop(req.body)
  res.send("Started")
})

app.post("/stop", (req, res) => {
  clearInterval(handle)
  res.send("Stopped")
})
about 4 years ago · Juan Pablo Isaza Report

0

let LoopInterval = null;
    
app.post('/start', (req, res) => {
    LoopInterval = setInterval(() => {
        the_function(req.body);
    }, 0);
});
    
app.get('/stop', (req, res) => {
    clearInterval(LoopInterval)
});
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!