1234567891011121314151617181920 |
- package org.dbsyncer.sdk.spi;
- import org.dbsyncer.sdk.model.NotifyMessage;
- /**
- * 通知服务(同步异常、连接器异常、应用异常等消息)
- *
- * @author AE86
- * @version 1.0.0
- * @date 2022/11/13 22:07
- */
- public interface NotifyService {
- /**
- * 发送通知消息
- *
- * @param notifyMessage
- */
- void sendMessage(NotifyMessage notifyMessage);
- }
|