Interface AggregatorPersistenceStatus
-
- All Known Implementing Classes:
PostgreSQLConnector,PostgreSQLConnectorDst,PostgreSQLConnectorSrc,PostgreSQLConnectorStatus
public interface AggregatorPersistenceStatus- Author:
- Luca Frosini (ISTI - CNR)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AggregationStatusgetAggregationStatus(String recordType, AggregationType aggregationType, Date aggregationStartDate)List<AggregationStatus>getAll()AggregationStatusgetLast(String recordType, AggregationType aggregationType, Date aggregationStartDate, Date aggregationEndDate)List<AggregationStatus>getUnterminated(String recordType, AggregationType aggregationType, Date aggregationStartDate, Date aggregationEndDate, boolean forceRestart)voidupsertAggregationStatus(AggregationStatus aggregationStatus)
-
-
-
Method Detail
-
getUnterminated
List<AggregationStatus> getUnterminated(String recordType, AggregationType aggregationType, Date aggregationStartDate, Date aggregationEndDate, boolean forceRestart) throws Exception
- Throws:
Exception
-
getAll
List<AggregationStatus> getAll() throws Exception
- Throws:
Exception
-
getAggregationStatus
AggregationStatus getAggregationStatus(String recordType, AggregationType aggregationType, Date aggregationStartDate) throws Exception
- Throws:
Exception
-
getLast
AggregationStatus getLast(String recordType, AggregationType aggregationType, Date aggregationStartDate, Date aggregationEndDate) throws Exception
- Throws:
Exception
-
upsertAggregationStatus
void upsertAggregationStatus(AggregationStatus aggregationStatus) throws Exception
- Throws:
Exception
-
-