Exemplo n.º 1
0
 @Override
 public void loadingFinished(boolean isSuccessful, Throwable t) {
   if (!isSuccessful) {
     Logger.exception(t);
     Gui.showError(t);
   }
 }
Exemplo n.º 2
0
  @Override
  protected Void innerDoInBackground() throws Exception {
    for (TaskOut tOut : Gui.getServer(srvId).listTasks()) {
      publish(tOut);
    }

    return null;
  }