Creating multiple instances of Client

Is it possible for multiple Clients (different tokens) to run concurrently? Considee the following simple example:
const client1 = new Client(...);
const client2 = new Client(...);

client1.login("some token");
client2.login("other token");
Was this page helpful?