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 Details

    • didBegin

      void didBegin(Long totalResultCountEstimate)
      Called when the export has begun, before any call to handle(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