It's easier than you think. Let's say you want to start 3 Jobs in a sequence: J1, J2 and J3.
Just start the first Job J1 wherever you want.
Sub JobDone (job As HttpJob)
If Job.Name = "J1" Then
If job.Success Then
Dim J2 As HttpJob
'prepare new job and send it
End If
If Job.Name = "J2" Then
If job.Success Then
Dim J3 As HttpJob
'prepare new job and send it
End If
If Job.Name = "J3" Then
If job.Success Then
Log("all three jobs are done...")
End If
End If
In JobDone you check which job came back. Here it is J1. If it was successful then start J2
FROM HERE and J3, too.
Just play with it. It's good to learn such things.
PS: When I was new to HttpUtils I had the same questions
PS2: There are a lot of ways to do it (see Erel's example. He uses a List and removes the finished jobs from it).