📄 sendmsgtoall.java
字号:
/**
*
*/
package cn.humanmonth.chat.server.protocol.response;
import cn.humanmonth.chat.server.domain.RequestData;
import cn.humanmonth.chat.server.protocol.Protocol;
import cn.humanmonth.framework.view.XmlUtil;
/**
* @author Piterlin
*
*/
public class SendMsgToAll {
private static String action="sendMsgToAllBack";
public void sendMsgToAll(RequestData requestData, Protocol protocol) {
protocol.sendStringToAllClient(XmlUtil.getStartTag(action)+"("+protocol.getUser().getUserNameDetail()+"):"+requestData.getRequestString()+XmlUtil.getEndTag(action));
}
public void sendSystemMsg(String msg,Protocol protocol){
protocol.sendStringToAllClient(XmlUtil.getStartTag(action)+"(系统信息):"+msg+XmlUtil.getEndTag(action));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -