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; /*from w ww. j a v a 2 s . c o m*/ import com.anlong.msghandle.interfac.AbstractMsgHandle; import com.anlong.msghandle.request.Request103; import com.anlong.msghandle.service.InitServerManager; /** * @ClassName: HeartImpl * @Package: com.anlong.imsghandle.impl * @company ShenZhen anlong Technology CO.,LTD. * @Description: TODO ???????????? * @author anlong * @date 2013-5-7 ????11:41:21 * @version V1.0 */ public class HeartImpl103 extends AbstractMsgHandle { private static HeartImpl103 instance = null; public static HeartImpl103 getInstance(){ if ( instance == null ) instance = new HeartImpl103(); return instance; } @Override public void execute(Request103 request103) throws Exception { // ?????????? InitServerManager.startRequestMessageService(request103); } }