This file contains 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
const SERVICE_ORDER_FETCHER = "orderFetcher"; | |
const STATE_COMPLETED = "completed"; | |
const STATE_FAILED = "failed"; | |
const FETCH_INTERVAL = 1000; | |
const MAX_FETCH_COUNT = 60; | |
const ERROR_ORDER_CODE_IS_UNDEFINED = new Error("orderCode is undefined"); | |
const ERROR_FETCH_TIMES_OVER_LIMITS = new Error( |
This file contains 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
const SERVICE_ORDER_FETCHER = "orderFetcher"; | |
const STATE_COMPLETED = "completed"; | |
const STATE_FAILED = "failed"; | |
const FETCH_INTERVAL = 500; | |
const MAX_FETCH_COUNT = 3; | |
const ERROR_ORDER_CODE_IS_UNDEFINED = new Error("orderCode is undefined"); | |
const ERROR_FETCH_TIMES_OVER_LIMITS = new Error( |
OlderNewer