加快添加集群后的信息获取的速度

This commit is contained in:
zengqiao
2022-09-08 14:21:26 +08:00
parent 703d685d59
commit de977a5b32
3 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.xiaojukeji.know.streaming.km.common.bean.event.cluster;
import lombok.Getter;
/**
* 集群新增事件
* @author zengqiao
* @date 22/02/25
*/
@Getter
public class ClusterPhyAddedEvent extends ClusterPhyBaseEvent {
public ClusterPhyAddedEvent(Object source, Long clusterPhyId) {
super(source, clusterPhyId);
}
}