All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.hadoop.serialization.builder.ValueParsingCallback Maven / Gradle / Ivy

There is a newer version: 8.15.1
Show newest version
package org.elasticsearch.hadoop.serialization.builder;

// Optional interface used by readers interested in knowing when a document hit starts and ends
// and also when metadata is being parsed vs the document core
public interface ValueParsingCallback {

	void beginDoc();

	void beginLeadMetadata();

	void endLeadMetadata();

	void beginSource();
	
	void endSource();

	void beginTrailMetadata();
	
	void endTrailMetadata();
	
	void endDoc();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy