setTimer(&serverJob, 1.seconds(), true); should do the trick.

But maybe slightly better is starting a task that runs an endless loop with a sleep(1.seconds())
inside. Maybe also with one task per client to avoid slow clients slowing down other clients. This
approach would also avoid stacking up loads of tasks in the event that the client takes longer than
a second to process the request.

Btw., did the task example fail to work or did it just not help in finding a solution.

I'll use that strategy. Thx!