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

org.opensearch.ml.common.annotation.ExecuteOutput Maven / Gradle / Ivy

There is a newer version: 2.17.1.0
Show newest version
/*
 * Copyright OpenSearch Contributors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.opensearch.ml.common.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.opensearch.ml.common.FunctionName;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ExecuteOutput {
    // supported algorithms. One type of execute output may support multiple algorithms.
    FunctionName[] algorithms();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy