Alternatave of splitUsers option

Hello,

The splitUsers “splitUsers(100) into atOnceUsers(5) separatedBy(10 seconds)” option is not available in version 3.0 of gatling, is there another option suitable with the current version which plays the same role?

Please i need help.

https://gatling.io/docs/gatling/reference/current/general/simulation_setup/#meta-dsl

Thanks Stéphane for your response.

In my case i want to inject 100 users simultaneous as following :

setUp(scn.inject(
atOnceUsers(100),

nothingFor(1 seconds),

atOnceUsers(100),

nothingFor(1 seconds),

atOnceUsers(100),

nothingFor(1 seconds),

atOnceUsers(100),

nothingFor(1 seconds),

atOnceUsers(100))

.protocols(httpProtocol))

How to do it in one ligne?