Interface StockChangeNotificationService
-
- All Known Implementing Classes:
DefaultStockChangeNotificationService
public interface StockChangeNotificationServiceComponent to notify other systems or processes that stock for a SKU has become available or unavailable for a tenant or application.- Author:
- Kelly Tisdell (ktisdell)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnotifyOfStockChange(String skuCode, int previousQuantityAvailable, int newQuantityAvailable, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)API to notify, typically via an asynchronous message, that stock has become available or unavailable for a tenant or application.
-
-
-
Method Detail
-
notifyOfStockChange
void notifyOfStockChange(@NonNull String skuCode, int previousQuantityAvailable, int newQuantityAvailable, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)API to notify, typically via an asynchronous message, that stock has become available or unavailable for a tenant or application.- Parameters:
skuCode-previousQuantityAvailable-newQuantityAvailable-contextInfo-
-
-