Package net.solarnetwork.central.dao
Interface BulkExportingDao.ExportCallback<T>
- Type Parameters:
T- the domain object type
- Enclosing interface:
BulkExportingDao<T>
public static interface BulkExportingDao.ExportCallback<T>
Handler for export processing.
-
Method Summary
Modifier and TypeMethodDescriptionvoidCalled when the export has begun, before any call tohandle(Object).Handle a single domain instance batch operation.
-
Method Details
-
didBegin
Called when the export has begun, before any call tohandle(Object).This method will always be called once, before any calls to
handle(Object).- Parameters:
totalResultCountEstimate- the total result count estimate, or null if not known
-
handle
Handle a single domain instance batch operation.- Parameters:
domainObject- the domain object- Returns:
- the operation results
-