1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-11 14:20:05 +00:00

feat(poll-strategy): added subsequentStrategies to PollStrategy

This commit is contained in:
Yury Shkoda
2023-05-16 17:48:04 +03:00
parent ea68c3dff3
commit 5c74186bab
4 changed files with 111 additions and 113 deletions

View File

@@ -1,7 +1,8 @@
export interface PollStrategy {
maxPollCount: number
pollInterval: number // milliseconds
streamLog: boolean
subsequentStrategies?: PollStrategy[]
streamLog?: boolean
logFolderPath?: string
}