Interface ChildDocumentPostProcessor
-
public interface ChildDocumentPostProcessor
Handles any post processing logic that needs to be applied to child documents created by a single parent.For example, a system developer may want all documents created by a transformer to have a set of fields copied from the parent to the child documents. Note that
processChildDocument(IngestDocument, IngestDocument)
will be called individually for each child document.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processChildDocument(IngestDocument parent, IngestDocument child)
Modify the parent and/or child document adding messages to the result as appropriate.
-
-
-
Method Detail
-
processChildDocument
void processChildDocument(IngestDocument parent, IngestDocument child)
Modify the parent and/or child document adding messages to the result as appropriate.
-
-