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 w w . ja v a 2 s . co m import com.anlong.msghandle.interfac.AbstractMsgHandle; import com.anlong.msghandle.request.Request102; import com.anlong.msghandle.service.InitServerManager; /** * @ClassName: OnlineStateImpl * @Package: com.anlong.imsghandle.impl * @company ShenZhen anlong Technology CO.,LTD. * @Description: TODO ???????????????? * @author anlong * @date 2013-4-28 ????3:17:48 * @version V1.0 */ public class OnlineStateImpl102 extends AbstractMsgHandle { private static OnlineStateImpl102 instance = null; public static OnlineStateImpl102 getInstance(){ if ( instance == null) instance = new OnlineStateImpl102(); return instance; } @Override public void execute(Request102 request102) throws Exception { // ???????????????? InitServerManager.startRequestMessageService(request102); } }