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.