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.service; /*from w w w . jav a 2 s.c o m*/ import com.anlong.msghandle.socket.InitFileSocketServer; import com.anlong.msghandle.socket.InitMsgSocketServer; /** * @Title: ServerManager.java * @Package com.anlong.msghandle.service * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????4:01:25 * @version V1.0 * @Description: TODO */ public class ServerManager { /** * close all socket service * @Title: closeSocketService * @Description: TODO ????Socket??? * @author anlong * @param * @return void * @throws */ public static void closeSocket() { try { InitMsgSocketServer.closeSocketConnection(); InitFileSocketServer.closeSocketConnection(); } catch (Exception e) { e.printStackTrace(); } } }