Initial commit of working RSS Aggregator build
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
import { BackoffStrategy, RepeatStrategy } from '../types';
|
||||
export interface AdvancedRepeatOptions {
|
||||
/**
|
||||
* A custom cron strategy.
|
||||
*/
|
||||
repeatStrategy?: RepeatStrategy;
|
||||
/**
|
||||
* A hash algorithm to be used when trying to create the job redis key.
|
||||
* Default - md5
|
||||
*/
|
||||
repeatKeyHashAlgorithm?: string;
|
||||
}
|
||||
export interface AdvancedOptions extends AdvancedRepeatOptions {
|
||||
/**
|
||||
* A custom backoff strategy.
|
||||
*/
|
||||
backoffStrategy?: BackoffStrategy;
|
||||
}
|
||||
Reference in New Issue
Block a user