// Server
if (config instanceof ConfigServerImpl) {
int max = Caster.toIntValue(queue.getAttribute("max"), 100);
int timeout = Caster.toIntValue(queue.getAttribute("timeout"), 0);
((ConfigServerImpl) config).setThreadQueue(new ThreadQueueImpl(max, timeout));
}
// Web
else {
}