Identifies limit number/percentage of items sent per time If both are provided, minimum number between the two will be used

interface IThrottleLimit {
    maxSendNumber?: number;
    samplingRate?: number;
}

Properties

maxSendNumber?: number

Identifies limit number of items per time Default: 1

samplingRate?: number

Identifies sampling percentage of items per time The percentage is set to 4 decimal places, for example: 1 means 0.0001% Default: 100 (0.01%)