ce.setConnectionHandle(handle);
Collection copy = new ArrayList(listeners);
for (Iterator i = copy.iterator(); i.hasNext(); )
{
log.info("notifying 1 cel connectionClosed");
ConnectionEventListener cel = (ConnectionEventListener)i.next();
try
{
cel.connectionClosed(ce);
}
catch (Throwable ignored)
{
log.warn("Ignored", ignored);
}