* @throws ConnectionException
*/
public static VtGate connect(String addresses, int timeoutMs) throws ConnectionException {
List<String> addressList = Arrays.asList(addresses.split(","));
int index = new Random().nextInt(addressList.size());
RpcClient client = RpcClientFactory.get(addressList.get(index), timeoutMs);
return new VtGate(client);
}