Exemplo n.º 1
0
 @Override
 protected List<O> execute(Task<I, O> task, List<I> batch) {
   try {
     return task.apply(batch);
   } catch (IOException e) {
     e.printStackTrace();
   }
   return Collections.emptyList();
 }