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

com.bigdata.bop.engine.IQueryDecl Maven / Gradle / Ivy

package com.bigdata.bop.engine;

import java.util.UUID;

import com.bigdata.bop.PipelineOp;

/**
 * A query declaration.
 */
public interface IQueryDecl {

    /**
     * The proxy for the query controller.
     */
    IQueryClient getQueryController();

    /**
     * The query identifier.
     */
    UUID getQueryId();

    /**
     * The query.
     */
    PipelineOp getQuery();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy