Parallel Timers

If you have a .q script, two functions being functiona{} and functionb{}, and two timers as below.

.timer.repeat[.proc.cp[];0Wp;0D00:00:01.000;(functiona;);"Publish"];.timer.repeat[.proc.cp[];0Wp;0D00:00:01.000;(functionb;);"Publish"];

And each function is calling an https request, do they run in parallel, or is it the case if functiona takes 5seconds
to receive a response to the https call then it blocks functionb. Regards.

They will run sequentially. 
For parallel you should distribute across processes.

Hello TMA,

Yes, the .timer function executes functiona first and waits until it recieves a response to then execute functionb.

https://github.com/AquaQAnalytics/TorQ/blob/master/docs/utilities.md

Regards Karan Patel