accounting-aggregator-se-pl.../src/main/java/org/gcube/accounting/aggregator/persistence/AggregatorPersistenceDst.java

15 lines
327 B
Java

package org.gcube.accounting.aggregator.persistence;
import org.gcube.documentstore.records.Record;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface AggregatorPersistenceDst extends AggregatorPersistence {
public void insert(Record record) throws Exception;
public void commitAndClose() throws Exception;
}