Beispiel #1
0
 private void notifySubmitted() {
   try {
     m_monitor.submitted(this);
   } catch (final Throwable t) {
     m_monitor.monitorException(t);
   }
 }
Beispiel #2
0
 private void notifyCompleted() {
   try {
     m_monitor.completed(this);
   } catch (final Throwable t) {
     m_monitor.monitorException(t);
   }
 }
Beispiel #3
0
 private void notifyPrerequisteCompleted(final Task prereq) {
   try {
     m_monitor.prerequisiteCompleted(this, prereq);
   } catch (final Throwable t) {
     m_monitor.monitorException(t);
   }
 }