- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
35 lines
684 B
JavaScript
35 lines
684 B
JavaScript
'use strict'
|
|
|
|
const Dispatcher = require('./dispatcher')
|
|
const RetryHandler = require('../handler/retry-handler')
|
|
|
|
class RetryAgent extends Dispatcher {
|
|
#agent = null
|
|
#options = null
|
|
constructor (agent, options = {}) {
|
|
super(options)
|
|
this.#agent = agent
|
|
this.#options = options
|
|
}
|
|
|
|
dispatch (opts, handler) {
|
|
const retry = new RetryHandler({
|
|
...opts,
|
|
retryOptions: this.#options
|
|
}, {
|
|
dispatch: this.#agent.dispatch.bind(this.#agent),
|
|
handler
|
|
})
|
|
return this.#agent.dispatch(opts, retry)
|
|
}
|
|
|
|
close () {
|
|
return this.#agent.close()
|
|
}
|
|
|
|
destroy () {
|
|
return this.#agent.destroy()
|
|
}
|
|
}
|
|
|
|
module.exports = RetryAgent
|