Mercurial > hg > monetdb-java
view src/main/java/nl/cwi/monetdb/embedded/tables/IMonetDBTableCursor.java @ 48:8353929359d6 embedded
Starting to test Java to BAT conversion. Let the debugging games begin!
author | Pedro Ferreira <pedro.ferreira@monetdbsolutions.com> |
---|---|
date | Fri, 11 Nov 2016 18:10:44 +0100 (2016-11-11) |
parents | src/main/java/nl/cwi/monetdb/embedded/tables/IMonetDBTableIterator.java@cd6ff38c90f4 |
children |
line wrap: on
line source
package nl.cwi.monetdb.embedded.tables; /** * A row iterator for a MonetDB table. * * @author <a href="mailto:pedro.ferreira@monetdbsolutions.com">Pedro Ferreira</a> */ public interface IMonetDBTableCursor extends IMonetDBTableBaseIterator { /** * The business logic for the iterator. * * @param nextRow The next row in the iteration. */ void processNextRow(RowIterator nextRow); }