Skip to content

Commit

Permalink
feat:增加no-op接口
Browse files Browse the repository at this point in the history
  • Loading branch information
RealOnlyone committed Sep 26, 2022
1 parent c3d1e9e commit fa94237
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.didichuxing.doraemonkit.tcp.ability;

/**
* didi Create on 2022/9/20 .
* <p>
* Copyright (c) 2022/9/20 by didiglobal.com.
*
* @author <a href="[email protected]">zhangjun</a>
* @version 1.0
* @Date 2022/9/20 11:19 上午
* @Description 用一句话说明文件功能
*/

public class MessageReceiverHook {

public static void dispatchMessage(Object message) {

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.didichuxing.doraemonkit.tcp.ability;

/**
* didi Create on 2022/9/20 .
* <p>
* Copyright (c) 2022/9/20 by didiglobal.com.
*
* @author <a href="[email protected]">zhangjun</a>
* @version 1.0
* @Date 2022/9/20 11:18 上午
* @Description 用一句话说明文件功能
*/

public class MessageSenderHook {

public static void sendMessage(String message) {
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.didichuxing.doraemonkit.tcp.ability;

/**
* didi Create on 2022/9/20 .
* <p>
* Copyright (c) 2022/9/20 by didiglobal.com.
*
* @author <a href="[email protected]">zhangjun</a>
* @version 1.0
* @Date 2022/9/20 11:18 上午
* @Description 用一句话说明文件功能
*/

public class TcpMessageHook {

public static void init() {

}
}

0 comments on commit fa94237

Please sign in to comment.