DefaultNotifyServiceProvider.java 369 B

123456789101112131415161718
  1. package org.dbsyncer.plugin.impl;
  2. import org.dbsyncer.plugin.model.NotifyMessage;
  3. import org.dbsyncer.plugin.NotifyService;
  4. /**
  5. * 默认通知服务
  6. *
  7. * @author AE86
  8. * @version 1.0.0
  9. * @date 2022/11/13 22:57
  10. */
  11. public class DefaultNotifyServiceProvider implements NotifyService {
  12. @Override
  13. public void sendMessage(NotifyMessage notifyMessage) {
  14. }
  15. }