com.github.pukkaone.jarinvoke.Command Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jar-invoke Show documentation
Show all versions of jar-invoke Show documentation
Elasticsearch plugin to invoke Java code
package com.github.pukkaone.jarinvoke;
import java.util.Map;
import org.elasticsearch.index.fielddata.ScriptDocValues;
/**
* Compiled command.
*/
public interface Command {
/**
* Executes command.
*
* @param variables
* script variable names and values
* @param docLookup
* document field names and values
* @return value which script returns
*/
Object execute(Map variables, Map> docLookup);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy