eu.larkc.core.executor.pipe
Interface PipeInterface

All Known Implementing Classes:
Pipe

public interface PipeInterface

Interface that defines the methods a pipe must have.

Author:
norbert

Method Summary
 void execute(SetOfStatements query)
          Method to give the query to the source and execute the workflow.
 SetOfStatements getNextResults()
          Method to retrieve the next results from the workflow.
 

Method Detail

execute

void execute(SetOfStatements query)
Method to give the query to the source and execute the workflow.

Parameters:
query - the query.

getNextResults

SetOfStatements getNextResults()
Method to retrieve the next results from the workflow.

Returns:
The results of the execution.