Will timers be called parallel or sequential?

Hello dear friends,
I am not aware of the strategy behind the implementation of LVGL timers. I use FreeRTOS tasks. The tasks are supposed to be called parallel to each other. Now I wonder if LVGL timers are called parallel to each other rather than being sequential?

LVGL timers are called sequentially. The timer system in LVGL is not the same as tasks running in parallel on an OS (hence the rename from tasks to timers in v8).

Thank you for your clarification.