com.espertech.esper.epl.join.rep.Repository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esper Show documentation
Show all versions of esper Show documentation
Complex event processing and event series analysis component
/**************************************************************************************
* Copyright (C) 2006-2015 EsperTech Inc. All rights reserved. *
* http://www.espertech.com/esper *
* http://www.espertech.com *
* ---------------------------------------------------------------------------------- *
* The software in this package is published under the terms of the GPL license *
* a copy of which has been included with this distribution in the license.txt file. *
**************************************************************************************/
package com.espertech.esper.epl.join.rep;
import com.espertech.esper.client.EventBean;
import java.util.Iterator;
import java.util.Set;
/**
* An interface for a repository of events in a lookup/join scheme
* that supplies events for event stream table lookups and receives results of lookups.
*/
public interface Repository
{
/**
* Supply events for performing look ups for a given stream.
* @param lookupStream is the stream to perform lookup for
* @return an iterator over events with additional positioning information
*/
public Iterator getCursors(int lookupStream);
/**
* Add a lookup result.
* @param cursor provides result position and parent event and node information
* @param lookupResults is the events found
* @param resultStream is the stream number of the stream providing the results
*/
public void addResult(Cursor cursor, Set lookupResults, int resultStream);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy