This commit is contained in:
wangcongtao
2020-03-13 19:07:19 +08:00
parent 0f4f44e30f
commit cb970a224d
7 changed files with 87 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
package com.mogo.service.strategy;
import com.alibaba.android.arouter.facade.template.IProvider;
/**
* @author congtaowang
* @since 2020-03-13
* <p>
* 刷新策略控制
*/
public interface IMogoRefreshStrategyController extends IProvider {
/**
* 中断当前刷新,在 delay ms 后再次刷新
*
* @param delay 单位ms 0 为则立即刷新,为负值则忽略
*/
void restartAutoRefreshAtTime( int delay );
}