package com.jqmobile.core.internal; /** * 通用监听器接口 * @author MODI * * @param <Result> * @project com.jiuqi.mobile.service * @date 2013年11月29日 */ public interface IListener<Result extends IListenerResult> { /** * 回调促发器 * @param r * @throws Throwable */ public boolean listenr(Result r) throws Throwable; }