Class AbstractBatchItemHandler<T1 extends ExchangeObject,T2 extends ExchangeObject>
java.lang.Object
com.broadleafcommerce.dataexchange.service.AbstractBatchItemHandler<T1,T2>
- All Implemented Interfaces:
BatchItemHandler<T1,
T2>
- Direct Known Subclasses:
ProductBatchItemHandler
,ProductRelatedBatchItemHandler
,ProductTagBatchItemHandler
,VariantRelatedBatchItemHandler
public abstract class AbstractBatchItemHandler<T1 extends ExchangeObject,T2 extends ExchangeObject>
extends Object
implements BatchItemHandler<T1,T2>
-
Constructor Summary
ConstructorsConstructorDescriptionAbstractBatchItemHandler
(com.broadleafcommerce.common.extension.TypeFactory typeFactory) -
Method Summary
Modifier and TypeMethodDescriptionprotected CompletableFuture<Void>
applyHandle
(HandlerArgs<T1, T2> args, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate, CompletableFuture<Void> result) Create a completable future that will apply the handle method.protected CompletableFuture<Void>
applyPostOperations
(HandlerArgs<T1, T2> args, CompletableFuture<Void> future) Applies the postHandle and populateCorrelationId methods.protected Map<Locale,
List<Translation>> buildTranslationMap
(T2 beforeSaveItem, String entityId) Build a map of translations for the given translations, keyed by locale.protected CompletableFuture<Void>
createFutureInternal
(HandlerArgs<T1, T2> args) Create a completable future that will apply the preHandle, handle, postHandle, and createSupplementalFutures methods.execute
(T1 parent, ExchangeObject exchangeObject, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate) The entry point for the handler.execute
(T1 parent, ExchangeObject exchangeObject, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate, BatchItemOperationType operationType) The entry point for the handler.execute
(T1 parent, ExchangeObject exchangeObject, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate, BatchItemOperationType operationType, Map<String, Object> additionalArgs) The entry point for the handler.execute
(T1 parent, ExchangeObject exchangeObject, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate, Map<String, Object> additionalArgs) The entry point for the handler.protected T1
getSavedTopLevel
(HandlerArgs<T1, T2> args) protected com.broadleafcommerce.common.extension.TypeFactory
protected boolean
isNewlyCreated
(HandlerArgs<?, ?> args) Returns true if this is a newly created item or if the saved item is null.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.broadleafcommerce.dataexchange.service.BatchItemHandler
canHandle, completedFuture, createCompletableFuture, createCompletableFuture, createSupplementalFutures, handle, handleCreate, handleDelete, handleUpdate, populateCorrelationId, postHandle, preHandle, retryableRunnable, retryableSupplier, shouldAbort
-
Constructor Details
-
AbstractBatchItemHandler
public AbstractBatchItemHandler(com.broadleafcommerce.common.extension.TypeFactory typeFactory)
-
-
Method Details
-
execute
public CompletableFuture<Void> execute(T1 parent, ExchangeObject exchangeObject, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate) Description copied from interface:BatchItemHandler
The entry point for the handler. Creates aCompletableFuture
that will handle the item in the batch. By default, this executes the following steps:- Execute the preHandleRunnable
- Execute the handleRunnable
- Execute the postHandleRunnable
- Execute the populateCorrelationIdRunnable
AbstractBatchItemHandler
contains an implementation, but users may override this method to customize the behavior. For example, if we're handling a product, we may want to execute additional futures after the product is handled.See class level documentation for important information about composing futures.
- Specified by:
execute
in interfaceBatchItemHandler<T1 extends ExchangeObject,
T2 extends ExchangeObject> - Parameters:
parent
- the parent object (e.g.ComprehensiveProduct
). This is not the saved instance. SeeBatchContext.getSavedEntity(String)
exchangeObject
- the item in the batchbatchContext
- the batch contextexecutor
- the executor to use for the futureretryTemplate
- the retry template to use for the future- Returns:
- a
CompletableFuture
that will handle the item in the batch - See Also:
-
AbstractBatchItemHandler#execute(T1, ExchangeObject, BatchContext, AsyncTaskExecutor, RetryTemplate)
BatchItemHandler.execute(ExchangeObject, ExchangeObject, BatchContext, AsyncTaskExecutor, RetryTemplate, BatchItemOperationType)
-
execute
public CompletableFuture<Void> execute(T1 parent, ExchangeObject exchangeObject, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate, BatchItemOperationType operationType) Description copied from interface:BatchItemHandler
The entry point for the handler. Supports the caller determining the operation type. Creates aCompletableFuture
that will handle the item in the batch. By default, this executes the following steps:- Execute the preHandleRunnable
- Execute the handleRunnable
- Execute the postHandleRunnable
- Execute the populateCorrelationIdRunnable
AbstractBatchItemHandler#execute(T1, ExchangeObject, BatchContext, AsyncTaskExecutor, RetryTemplate)
is likely sufficient and the operation type may be determined in theBatchItemHandler.preHandle(HandlerArgs)
step.See class level documentation for important information about composing futures.
- Specified by:
execute
in interfaceBatchItemHandler<T1 extends ExchangeObject,
T2 extends ExchangeObject> - Parameters:
parent
- the parent object (e.g.ComprehensiveProduct
). This is not the saved instance. SeeBatchContext.getSavedEntity(String)
exchangeObject
- the item in the batchbatchContext
- the batch contextexecutor
- the executor to use for the futureretryTemplate
- the retry template to use for the future- Returns:
- a
CompletableFuture
that will handle the item in the batch
-
execute
public CompletableFuture<Void> execute(T1 parent, ExchangeObject exchangeObject, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate, Map<String, Object> additionalArgs) Description copied from interface:BatchItemHandler
The entry point for the handler. Creates aCompletableFuture
that will handle the item in the batch. By default, this executes the following steps:- Execute the preHandleRunnable
- Execute the handleRunnable
- Execute the postHandleRunnable
- Execute the populateCorrelationIdRunnable
AbstractBatchItemHandler
contains an implementation, but users may override this method to customize the behavior. For example, if we're handling a product, we may want to execute additional futures after the product is handled.See class level documentation for important information about composing futures.
- Specified by:
execute
in interfaceBatchItemHandler<T1 extends ExchangeObject,
T2 extends ExchangeObject> - Parameters:
parent
- the parent object (e.g.ComprehensiveProduct
). This is not the saved instance. SeeBatchContext.getSavedEntity(String)
exchangeObject
- the item in the batchbatchContext
- the batch contextexecutor
- the executor to use for the futureretryTemplate
- the retry template to use for the futureadditionalArgs
- additional arguments to pass to the handler.- Returns:
- a
CompletableFuture
that will handle the item in the batch - See Also:
-
AbstractBatchItemHandler#execute(T1, ExchangeObject, BatchContext, AsyncTaskExecutor, RetryTemplate)
BatchItemHandler.execute(ExchangeObject, ExchangeObject, BatchContext, AsyncTaskExecutor, RetryTemplate, BatchItemOperationType)
-
execute
public CompletableFuture<Void> execute(T1 parent, ExchangeObject exchangeObject, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate, BatchItemOperationType operationType, Map<String, Object> additionalArgs) Description copied from interface:BatchItemHandler
The entry point for the handler. Supports the caller determining the operation type. Creates aCompletableFuture
that will handle the item in the batch. By default, this executes the following steps:- Execute the preHandleRunnable
- Execute the handleRunnable
- Execute the postHandleRunnable
- Execute the populateCorrelationIdRunnable
AbstractBatchItemHandler#execute(T1, ExchangeObject, BatchContext, AsyncTaskExecutor, RetryTemplate)
is likely sufficient and the operation type may be determined in theBatchItemHandler.preHandle(HandlerArgs)
step.See class level documentation for important information about composing futures.
- Specified by:
execute
in interfaceBatchItemHandler<T1 extends ExchangeObject,
T2 extends ExchangeObject> - Parameters:
parent
- the parent object (e.g.ComprehensiveProduct
). This is not the saved instance. SeeBatchContext.getSavedEntity(String)
exchangeObject
- the item in the batchbatchContext
- the batch contextexecutor
- the executor to use for the futureretryTemplate
- the retry template to use for the futureoperationType
- the operation typeadditionalArgs
- additional arguments to pass to the handler.- Returns:
- a
CompletableFuture
that will handle the item in the batch
-
createFutureInternal
Create a completable future that will apply the preHandle, handle, postHandle, and createSupplementalFutures methods.- Parameters:
args
- the handler arguments- Returns:
- the completable future
-
applyHandle
protected CompletableFuture<Void> applyHandle(HandlerArgs<T1, T2> args, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate, CompletableFuture<Void> result) Create a completable future that will apply the handle method. If performing more complex operations that require multiple steps that need to be executed, this is most likely the method that should be overridden.- Parameters:
args
- the handler argumentsexecutor
- the executor to run the completable futureretryTemplate
- the retry template to useresult
- the completable future to apply the handle method to- Returns:
- the completable future
-
applyPostOperations
protected CompletableFuture<Void> applyPostOperations(HandlerArgs<T1, T2> args, CompletableFuture<Void> future) Applies the postHandle and populateCorrelationId methods.- Parameters:
args
- the handler argumentsfuture
- the completable future to apply the post operations to- Returns:
- the completable future
-
buildTranslationMap
protected Map<Locale,List<Translation>> buildTranslationMap(T2 beforeSaveItem, @Nullable String entityId) Build a map of translations for the given translations, keyed by locale. The entity ID and entity type will be set on each translation. The translations object on theTranslatable
must not be null.- Returns:
- a map of translations keyed by locale
-
isNewlyCreated
Returns true if this is a newly created item or if the saved item is null.- Parameters:
args
- the handler arguments- Returns:
- true if this is a newly created item or if
HandlerArgs.getSavedItem()
is null
-
getSavedTopLevel
-
getTypeFactory
protected com.broadleafcommerce.common.extension.TypeFactory getTypeFactory()
-