
org.drools.runtime.rule.QueryResults Maven / Gradle / Ivy
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