fix: 调整D300转发间隔时间为 5s

This commit is contained in:
yarnom 2025-07-21 16:21:22 +08:00
parent 40cee949a9
commit 897507b97b

View File

@ -48,7 +48,7 @@ public class D331RtcmMessageExecutor implements Executor<D331RtcmMessage, Void>
// 添加一个成员变量用于追踪每个测站最后一次转发D300数据的时间
private final Map<String, Long> lastD300ForwardTimeMap = new ConcurrentHashMap<>();
private static final long D300_FORWARD_INTERVAL = 10000; // 10单位毫秒
private static final long D300_FORWARD_INTERVAL = 5000; // 5单位毫秒
@Override
public Void execute(D331RtcmMessage message) {