[集群] 增加通道刷新状态消息

This commit is contained in:
648540858
2025-01-21 17:04:51 +08:00
parent 01f491c026
commit 4e66e2bc6d
5 changed files with 38 additions and 2 deletions

View File

@@ -154,7 +154,6 @@ public class RedisRpcConfig implements MessageListener {
}catch (InvocationTargetException | IllegalAccessException e) {
log.error("[redis-rpc ] 处理请求失败 ", e);
}
}
private void sendResponse(RedisRpcResponse response){
@@ -172,7 +171,6 @@ public class RedisRpcConfig implements MessageListener {
redisTemplate.convertAndSend(REDIS_REQUEST_CHANNEL_KEY, message);
}
private final Map<Long, SynchronousQueue<RedisRpcResponse>> topicSubscribers = new ConcurrentHashMap<>();
private final Map<Long, CommonCallback<RedisRpcResponse>> callbacks = new ConcurrentHashMap<>();