示例#1
0
 @Override
 public Void call() throws IOException {
   // Don't bother setting a RequestContext to provide the DB.
   // Implementations should not need to access the DB in order to delete a
   // change ID.
   for (ChangeIndex i : getWriteIndexes()) {
     i.delete(id);
   }
   return null;
 }