Mercurial > hg > monetdb-java
view src/main/java/nl/cwi/monetdb/embedded/tables/IMonetDBTableRemover.java @ 44:cd6ff38c90f4 embedded
Cleaned more code. Ready to implement the iterators internally.
author | Pedro Ferreira <pedro.ferreira@monetdbsolutions.com> |
---|---|
date | Thu, 10 Nov 2016 11:16:09 +0100 (2016-11-10) |
parents | dfea8468cd1a |
children |
line wrap: on
line source
package nl.cwi.monetdb.embedded.tables; /** * A row removal iterator for a MonetDB table. * * @author <a href="mailto:pedro.ferreira@monetdbsolutions.com">Pedro Ferreira</a> */ public interface IMonetDBTableRemover extends IMonetDBTableBaseIterator { /** * The business logic for the iterator. Use the * {@link nl.cwi.monetdb.embedded.tables.RowRemover#setCurrentRowToRemove(boolean) setToRemove} * method in <code>processNextRow</code> to set the current row to remove. * * @param nextRow The next row in the iteration. */ void processNextRow(RowRemover nextRow); }