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

org.drools.runtime.rule.QueryResults Maven / Gradle / Ivy

There is a newer version: 7.6.0.Final
Show newest version
package org.drools.runtime.rule;

import java.util.Iterator;

/**
 * 

* Contains the results of a query. The identifiers is a map of the declarations for the query, only patterns or fields that are bound can * be accessed in the QueryResultsRow. This class can be marshalled using the drools-transformer-xstream module in combination with the BatchExecutionHelper. * See the BatchExecutionHelper for more details. *

* */ public interface QueryResults extends Iterable { String[] getIdentifiers(); Iterator iterator(); int size(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy