.setTimeout(connectionTimeoutMs,
TimeUnit.MILLISECONDS);
this.jmxEnabled = jmxEnabled;
this.identifierString = identifierString;
if(this.jmxEnabled) {
stats = new ClientSocketStats(identifierString);
JmxUtils.registerMbean(new ClientSocketStatsJmx(stats),
JmxUtils.createObjectName(JmxUtils.getPackageName(this.getClass()),
"aggregated" + identifierString));
} else {
stats = null;