Interface BatchCompletionService
- All Known Implementing Classes:
DefaultBatchCompletionService
public interface BatchCompletionService
Modifies the batch and import with the received completion
- Author:
- Phillip Verheyden (phillipuniverse)
-
Method Summary
Modifier and TypeMethodDescriptionvoid
receiveCompletion
(com.broadleafcommerce.common.dataimport.messaging.BatchCompletion completion) Receives the completion for a given batch and updates the underlyingBatch
,Import
andBatchItemCompletions
based on the information applied in the completion.
-
Method Details
-
receiveCompletion
void receiveCompletion(com.broadleafcommerce.common.dataimport.messaging.BatchCompletion completion) Receives the completion for a given batch and updates the underlying
Batch
,Import
andBatchItemCompletions
based on the information applied in the completion.This method is idempotent and should be safe to call multiple times with the same final outcome.
- Parameters:
completion
- the received completion
-