Class ShoppingListServiceImpl
- java.lang.Object
-
- com.commercetools.sync.services.impl.ShoppingListServiceImpl
-
- All Implemented Interfaces:
ShoppingListService
public final class ShoppingListServiceImpl extends java.lang.Object implements ShoppingListService
Implementation of ShoppingListService interface.
-
-
Field Summary
Fields Modifier and Type Field Description protected com.github.benmanes.caffeine.cache.Cache<java.lang.String,java.lang.String>keyToIdCacheprotected static intMAXIMUM_ALLOWED_UPDATE_ACTIONS
-
Constructor Summary
Constructors Constructor Description ShoppingListServiceImpl(ShoppingListSyncOptions syncOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>>cacheKeysToIds(java.util.Set<java.lang.String> shoppingListKeys)Filters out the keys which are already cached and fetches only the not-cached shopping list keys from the CTP project defined in an injectedSphereClientand stores a mapping for every shopping list to id in the cached map of keys -> ids and returns this cached map.java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.shoppinglists.ShoppingList>>createShoppingList(io.sphere.sdk.shoppinglists.ShoppingListDraft shoppingListDraft)Given a resource draft of typeShoppingListDraft, this method attempts to create a resourceShoppingListbased on it in the CTP project defined by the sync options.java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.shoppinglists.ShoppingList>>fetchMatchingShoppingListsByKeys(java.util.Set<java.lang.String> keys)Given aSetof shopping list keys, this method fetches a set of all the shopping lists, matching given set of keys in the CTP project, defined in an injectedSphereClient.java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.shoppinglists.ShoppingList>>fetchShoppingList(java.lang.String key)Given a shopping list key, this method fetches a shopping list that matches given key in the CTP project defined in a potentially injectedSphereClient.java.util.concurrent.CompletionStage<io.sphere.sdk.shoppinglists.ShoppingList>updateShoppingList(io.sphere.sdk.shoppinglists.ShoppingList shoppingList, java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.shoppinglists.ShoppingList>> updateActions)Given aShoppingListand aList<UpdateAction<ShoppingList>>, this method issues an update request with these update actions on thisShoppingListin the CTP project defined in a potentially injectedSphereClient.
-
-
-
Field Detail
-
keyToIdCache
protected final com.github.benmanes.caffeine.cache.Cache<java.lang.String,java.lang.String> keyToIdCache
-
MAXIMUM_ALLOWED_UPDATE_ACTIONS
protected static final int MAXIMUM_ALLOWED_UPDATE_ACTIONS
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ShoppingListServiceImpl
public ShoppingListServiceImpl(@Nonnull ShoppingListSyncOptions syncOptions)
-
-
Method Detail
-
cacheKeysToIds
@Nonnull public java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>> cacheKeysToIds(@Nonnull java.util.Set<java.lang.String> shoppingListKeys)Description copied from interface:ShoppingListServiceFilters out the keys which are already cached and fetches only the not-cached shopping list keys from the CTP project defined in an injectedSphereClientand stores a mapping for every shopping list to id in the cached map of keys -> ids and returns this cached map.Note: If all the supplied keys are already cached, the cached map is returned right away with no request to CTP.
- Specified by:
cacheKeysToIdsin interfaceShoppingListService- Parameters:
shoppingListKeys- the shopping list keys to fetch and cache the ids for.- Returns:
CompletionStage<Map> in which the result of it's completion contains a map of all shopping list keys -> ids
-
fetchMatchingShoppingListsByKeys
@Nonnull public java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.shoppinglists.ShoppingList>> fetchMatchingShoppingListsByKeys(@Nonnull java.util.Set<java.lang.String> keys)Description copied from interface:ShoppingListServiceGiven aSetof shopping list keys, this method fetches a set of all the shopping lists, matching given set of keys in the CTP project, defined in an injectedSphereClient. A mapping of the key to the id of the fetched shopping lists is persisted in an in-memory map.- Specified by:
fetchMatchingShoppingListsByKeysin interfaceShoppingListService- Parameters:
keys- set of shopping list keys to fetch matching shopping lists by.- Returns:
CompletionStage<Map> in which the result of it's completion contains aSetof all matching shopping lists.
-
fetchShoppingList
@Nonnull public java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.shoppinglists.ShoppingList>> fetchShoppingList(@Nullable java.lang.String key)Description copied from interface:ShoppingListServiceGiven a shopping list key, this method fetches a shopping list that matches given key in the CTP project defined in a potentially injectedSphereClient. If there is no matching shopping list, an emptyOptionalwill be returned in the returned future. A mapping of the key to the id of the fetched shopping list is persisted in an in-memory map.- Specified by:
fetchShoppingListin interfaceShoppingListService- Parameters:
key- the key of the shopping list to fetch.- Returns:
CompletionStage<Optional> in which the result of it's completion contains anOptionalthat contains the matchingShoppingListif exists, otherwise empty.
-
createShoppingList
@Nonnull public java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.shoppinglists.ShoppingList>> createShoppingList(@Nonnull io.sphere.sdk.shoppinglists.ShoppingListDraft shoppingListDraft)Description copied from interface:ShoppingListServiceGiven a resource draft of typeShoppingListDraft, this method attempts to create a resourceShoppingListbased on it in the CTP project defined by the sync options.A completion stage containing an empty option and the error callback will be triggered in those cases:
- the draft has a blank key
- the create request fails on CTP
On the other hand, if the resource gets created successfully on CTP, then the created resource's id and key are cached and the method returns a
CompletionStagein which the result of it's completion contains an instanceOptionalof the resource which was created.- Specified by:
createShoppingListin interfaceShoppingListService- Parameters:
shoppingListDraft- the resource draft to create a resource based off of.- Returns:
- a
CompletionStagecontaining an optional with the created resource if successful otherwise an empty optional.
-
updateShoppingList
@Nonnull public java.util.concurrent.CompletionStage<io.sphere.sdk.shoppinglists.ShoppingList> updateShoppingList(@Nonnull io.sphere.sdk.shoppinglists.ShoppingList shoppingList, @Nonnull java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.shoppinglists.ShoppingList>> updateActions)Description copied from interface:ShoppingListServiceGiven aShoppingListand aList<UpdateAction<ShoppingList>>, this method issues an update request with these update actions on thisShoppingListin the CTP project defined in a potentially injectedSphereClient. This method returnsCompletionStage<ShoppingList> in which the result of it's completion contains an instance of theShoppingListwhich was updated in the CTP project.- Specified by:
updateShoppingListin interfaceShoppingListService- Parameters:
shoppingList- theShoppingListto update.updateActions- the update actions to update theShoppingListwith.- Returns:
CompletionStage<ShoppingList> containing as a result of it's completion an instance of theShoppingListwhich was updated in the CTP project or aSphereException.
-
-