236237238239240241242243244245246
protected void notifyDead() { for (Iterator i = observers.iterator(); i.hasNext(); ) { DHTRouterObserver rto = (DHTRouterObserver) i.next(); try{ rto.destroyed(this); }catch( Throwable e ){ Debug.printStackTrace(e); } } }