Back to project page msghandle.
The source code is released under:
GNU General Public License
If you think the Android project msghandle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.anlong.msghandle.impl; // w ww .ja va2s . com import com.anlong.msghandle.interfac.AbstractMsgHandle; import com.anlong.msghandle.service.InitServerManager; /** * @ClassName: GroupInfoListImpl * @Package: com.anlong.imsghandle.impl * @company ShenZhen anlong Technology CO.,LTD. * @Description: TODO ??????????????? * @author anlong * @date 2013-4-28 ????3:17:24 * @version V1.0 */ public class GroupInfoListImpl extends AbstractMsgHandle { private static GroupInfoListImpl instance = null; public static GroupInfoListImpl getInstance(){ if ( instance == null ) instance = new GroupInfoListImpl(); return instance; } /*@Override public void execute(Request109 request109) throws Exception { // ??????????????? InitServerManager.startRequestMessageService(request109); }*/ }