Files
fil/packages/java/dev/kreuzberg/IPostProcessor.java

33 lines
993 B
Java
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
package dev.kreuzberg;
/**
* Bridge interface for the PostProcessor plugin system.
*
* Implementations are wrapped by PostProcessorBridge and exposed to the native
* runtime through Panama FFM upcall stubs.
*/
public interface IPostProcessor {
/** Plugin name (used for registry keying). */
String name();
/** Plugin version. */
String version();
/** Initialize the plugin. */
default void initialize() throws Exception {}
/** Shut down the plugin. */
default void shutdown() throws Exception {}
/** process. */ void process(ExtractionResult result, ExtractionConfig config) throws Exception;
/** processing_stage. */ String processing_stage() throws Exception;
/** should_process. */ boolean should_process(ExtractionResult _result, ExtractionConfig _config) throws Exception;
/** estimated_duration_ms. */ long estimated_duration_ms(ExtractionResult _result) throws Exception;
/** priority. */ int priority() throws Exception;
}