Plain TypeScript Usage
Rebound works without any framework:
class Worker {
@Rebound({ attempts: 4 })
async runTask() {
// task logic...
}
}
Useful for:
- Scripts
- Workers
- CLI tools
- Microservices
Rebound works without any framework:
class Worker {
@Rebound({ attempts: 4 })
async runTask() {
// task logic...
}
}
Useful for: