// ------------------------------------------------------------------------
// Internal ops
// ------------------------------------------------------------------------
final private Connection createAsyncConnection() {
Connection.Factory cfact = (Connection.Factory) connSpec.getConnectionProperty(Property.CONNECTION_FACTORY);
Connection conn = null;
try {
conn = Assert.notNull(cfact.newConnection(connSpec), "connection delegate", ClientRuntimeException.class);
}
catch (ProviderException e) {
Log.bug("Couldn't create the handler delegate. => " + e.getLocalizedMessage());