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.common; /* ww w .j a v a 2 s . c o m*/ /** * @ClassName: HandleTimer * @Package: com.anlong.imsghandle.common * @company ShenZhen anlong Technology CO.,LTD. * @Description: TODO ???????????? * @author anlong * @date 2013-6-1 ????3:53:23 * @version V1.0 */ public abstract class HandleTimer { /**?Key?????????*/ public abstract void startTimer(String key,String bCode); /**?Key?????????*/ public abstract void cancelTimer(String key); }