mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-24 19:29:25 +08:00
提取实现类,只需要实现方法即可完成
This commit is contained in:
parent
6062a75b02
commit
88e5c8fb9c
@ -11,6 +11,9 @@ com.example.wxhk.tcp.vertx.VertxTcp 这个是tcp服务端,接受信息
|
|||||||
com.example.wxhk.tcp.vertx.InitWeChat 微信环境初始化
|
com.example.wxhk.tcp.vertx.InitWeChat 微信环境初始化
|
||||||
|
|
||||||
com.example.wxhk.tcp.vertx.ArrHandle 循环消息处理
|
com.example.wxhk.tcp.vertx.ArrHandle 循环消息处理
|
||||||
|
|
||||||
|
com.example.wxhk.server.WxSmgServer 为消息处理接口,实现其中的方法即可
|
||||||
|
|
||||||
![image](https://github.com/sglmsn/wxhelper/assets/36943585/59d49401-a492-46a9-8ed9-dab7fb1822b4)
|
![image](https://github.com/sglmsn/wxhelper/assets/36943585/59d49401-a492-46a9-8ed9-dab7fb1822b4)
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,7 +54,9 @@ public class WxMsgHandle {
|
|||||||
return null;
|
return null;
|
||||||
}, WxMsgType.私聊信息);
|
}, WxMsgType.私聊信息);
|
||||||
add(chatMsg -> {
|
add(chatMsg -> {
|
||||||
|
if (FILEHELPER.equals(chatMsg.getFromUser())) {
|
||||||
wxSmgServer.文件助手(chatMsg);
|
wxSmgServer.文件助手(chatMsg);
|
||||||
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}, WxMsgType.收到转账之后或者文件助手等信息);
|
}, WxMsgType.收到转账之后或者文件助手等信息);
|
||||||
add(chatMsg -> {
|
add(chatMsg -> {
|
||||||
|
@ -37,9 +37,7 @@ public class WxSmgServerImpl implements com.example.wxhk.server.WxSmgServer {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void 文件助手(PrivateChatMsg chatMsg) {
|
public void 文件助手(PrivateChatMsg chatMsg) {
|
||||||
if (FILEHELPER.equals(chatMsg.getFromUser())) {
|
|
||||||
log.info("文件助手:{},", chatMsg.getContent());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user