Last active
September 23, 2019 19:34
-
-
Save heshamMassoud/dc4c9a67d1779e0db31b1c0e21be3ae4 to your computer and use it in GitHub Desktop.
ProductSyncExample1.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final Logger logger = LoggerFactory.getLogger(MySync.class); | |
final ProductSyncOptions productsyncOptions = | |
ProductSyncOptionsBuilder.of(sphereClient) | |
.errorCallBack(logger::error) | |
.warningCallBack(logger::warn) | |
.build(); | |
final ProductSync productSync = new ProductSync(productSyncOptions); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment