Does the servicestack client allow parallel requests?

Quick question: does the service stack client allow parallel task based operations?

var task1 = client.PostAsync(request1);
var task2 = client.PostAsync(request2);

await Task.WhenAll(task1, task2);

Or do I need to instantiate separate clients to do this?

var task1 = client1.PostAsync(request1);
var task2 = client2.PostAsync(request2);

await Task.WhenAll(task1, task2);

Yes you can use the same client.