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

15 lines
327 B
Java
Raw Normal View History

package org.gcube.accounting.aggregator.persistence;
import org.gcube.documentstore.records.Record;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface AggregatorPersistenceDst extends AggregatorPersistence {
2024-02-06 12:38:15 +01:00
public void insert(Record record) throws Exception;
2024-02-06 12:38:15 +01:00
public void commitAndClose() throws Exception;
}