Interface ExportDataHistoryService
-
- All Known Implementing Classes:
DefaultExportDataHistoryService
public interface ExportDataHistoryServiceExportDataHistory Service. Records events during an export of data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrecordExportEnd(org.springframework.messaging.Message<?> message, ExportDataEvent ede, java.lang.Integer count)Recording the end of the generation of data.ExportDataEventrecordExportStart(ExportDataEvent payload, java.lang.Long timestamp)Record the beginning of an export.
-
-
-
Method Detail
-
recordExportStart
ExportDataEvent recordExportStart(ExportDataEvent payload, java.lang.Long timestamp)
Record the beginning of an export.- Parameters:
payload- The object that contains the information required to export datatimestamp- The time the export started- Returns:
ExportDataEvent
-
recordExportEnd
void recordExportEnd(org.springframework.messaging.Message<?> message, ExportDataEvent ede, java.lang.Integer count)Recording the end of the generation of data.- Parameters:
message-ede- Export data event that contains the cronjobs codecount- The size of the list of generated items
-
-