add FrequencyControl

This commit is contained in:
zengwei-cogiot
2023-09-11 18:12:34 +08:00
parent 81d60f6453
commit 0564483102
32 changed files with 2647 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package com.abin.mallchat.common;
public interface FrequencyControlConstant {
String TOTAL_COUNT_WITH_IN_FIX_TIME_FREQUENCY_CONTROLLER = "TotalCountWithInFixTime";
String SLIDING_WINDOW_FREQUENCY_CONTROLLER = "SlidingWindow";
String TOKEN_BUCKET_FREQUENCY_CONTROLLER = "TokenBucket";
}