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; // www . j av a2 s. c om import com.anlong.msghandle.interfac.AbstractMsgHandle; import com.anlong.msghandle.request.Request203; import com.anlong.msghandle.service.InitServerManager; /** * @ClassName: SendMessageImpl * @Package: com.anlong.imsghandle.impl * @company ShenZhen anlong Technology CO.,LTD. * @Description: TODO ???????????????????? * @author anlong * @date 2013-4-28 ????3:18:05 * @version V1.0 */ public class SendMessageImpl203 extends AbstractMsgHandle { private static SendMessageImpl203 instance = null; public static SendMessageImpl203 getInstance(){ if ( instance == null ) instance = new SendMessageImpl203(); return instance; } @Override public void execute(Request203 request203) throws Exception { // ???????????????????? InitServerManager.startRequestMessageService(request203); } }