Skip to content

Commit

Permalink
Api 接口包重新调整.
Browse files Browse the repository at this point in the history
  • Loading branch information
magestacks committed Feb 26, 2022
1 parent 54b41c3 commit 82e1d6e
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
package cn.hippo4j.common.notify;
package cn.hippo4j.common.api;

import cn.hippo4j.common.notify.NotifyConfigDTO;

import java.util.List;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package cn.hippo4j.common.api;

/**
* Thread pool dynamic refresh.
*
* @author chen.ma
* @date 2022/2/26 12:26
*/
public interface ThreadPoolDynamicRefresh {

/**
* Dynamic refresh.
*
* @param content
*/
void dynamicRefresh(String content);

}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package cn.hippo4j.common.notify;

import cn.hippo4j.common.api.NotifyConfigBuilder;
import cn.hippo4j.common.config.ApplicationContextHolder;
import cn.hippo4j.common.notify.request.AlarmNotifyRequest;
import cn.hippo4j.common.notify.request.ChangeParameterNotifyRequest;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cn.hippo4j.starter.notify;

import cn.hippo4j.common.notify.AlarmControlHandler;
import cn.hippo4j.common.notify.NotifyConfigBuilder;
import cn.hippo4j.common.api.NotifyConfigBuilder;
import cn.hippo4j.common.notify.NotifyConfigDTO;
import cn.hippo4j.common.notify.ThreadPoolNotifyDTO;
import cn.hippo4j.common.notify.request.ThreadPoolNotifyRequest;
Expand Down

0 comments on commit 82e1d6e

Please sign in to comment.