⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sendmsgtoall.java

📁 flex实现的前台
💻 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 + -