Java Reference
In-Depth Information
try
{
logger.log(Level.SEVERE, "Reconnect attempt " + i
+ " failed. Waiting to try again.");
Thread.sleep(30000);
} catch (InterruptedException e)
{
}
}
}
if (ex != null)
{
throw (new WorkloadException(ex));
}
}
public SQLHolder createSQLHolder()
{
return new SQLHolder();
}
}
As you can see from the above listing, the SQLWorkloadManager class defines
several instance variables. These instance variables are defined in Table 15.2.
Search WWH ::




Custom Search