Esempio n. 1
0
 protected void handleTimeout(String msg) {
   m_tracker.setTimedOut(true);
   processError("Timeout retrieving", msg, null);
 }
Esempio n. 2
0
 protected void handleError(String msg, Throwable t) {
   // XXX why do we set timedOut to false here?  should we be doing this everywhere?
   m_tracker.setTimedOut(false);
   processError("Error retrieving", msg, t);
 }