Trigger multiple request parallelly at exact time

Hi Stephane, All,

I am trying to replicate the parallel execution of API calls like below. Please provide feedback on the method used below, kindly suggest if there is any better solutions available.
1st scala file

object A {

Val A_scn=scenario(“A”)

exec(http(“AP1”)
.get(www.gmail.com))

.exec(B.B_scn) // Separate scala file having 5 API calls
}

When I executed this way and enabled the TRACE in logback.XML I could see few ms difference in the request trigger time of those 5 API calls

That few ms delay is expected to come? Is this method correct?
Regards,
Aravind

Hi Stephane,

I tried those 5 API requests under resources as well but could see few ms second differences.

Regards,

Aravind