Package io.keikai.api
Interface PostImport
-
public interface PostImport
Used withImporter
for post-import-processing life cycle.- Since:
- 3.9.1
- Author:
- Henri
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
process(Book book)
Used withImporter
for post-import-processing life cycle.
-
-
-
Method Detail
-
process
void process(Book book)
Used withImporter
for post-import-processing life cycle. After Importer.imports the book, the Importer will call back to this method with the loadedBook
and you can use whatever Range methods to post-process the loaded Book. Note that in this life cycle, all Range methods called will ignore autoRefresh(i.e. autoRefresh is always false) and skip all cell cache clearing; thus speed up the post processing.- Parameters:
book
-
-
-