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

org.elasticsearch.script.BytesRefSortScript Maven / Gradle / Ivy

There is a newer version: 8.13.4
Show newest version
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */
package org.elasticsearch.script;

import java.io.IOException;
import java.util.Map;

public abstract class BytesRefSortScript extends AbstractSortScript {

    public static final String[] PARAMETERS = {};

    public static final ScriptContext CONTEXT = new ScriptContext<>("bytesref_sort", Factory.class);

    public BytesRefSortScript(Map params, DocReader docReader) {
        super(params, docReader);
    }

    public abstract Object execute();

    /**
     * A factory to construct {@link BytesRefSortScript} instances.
     */
    public interface LeafFactory {
        BytesRefSortScript newInstance(DocReader reader) throws IOException;
    }

    /**
     * A factory to construct stateful {@link BytesRefSortScript} factories for a specific index.
     */
    public interface Factory extends ScriptFactory {
        LeafFactory newFactory(Map params);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy