1

通过异步执行一堆请求的最简单方法是什么RoboSpice

我在某处读到需要实现 aRequestRunner但我不知道如何将它与 合并,有SpiceManager什么想法吗?

4

1 回答 1

5

您可以覆盖可用的线程数,定义您自己的自定义 SpiceService:

    public class CustomSpiceService extends RetrofitGsonSpiceService {
      /**
      * Overrides the number of threads that will be used to make requests.  The default
      * is 1.
      */
      @Override
      public int getThreadCount(){
        return NUM_THREAD;
      }
    } 

之后,您可以在管理器中使用新的 spiceService:

    private SpiceManager spiceManager = new SpiceManager(CustomSpiceService.class);

作为奖励,您可以检测连接的类型,因此如果您处于 Wifi 连接中,则可以拥有更多线程。

/**
 * Overrides the number of threads that will be used to make requests.  The default
 * is 1, so if we are on a fast connection we use 4, otherwise we use 2.
 */
@Override
public int getThreadCount() {

    ConnectivityManager connectivityManager = 
            (ConnectivityManager) DaftApp.getInstance().getSystemService(CONNECTIVITY_SERVICE);

    NetworkInfo info = connectivityManager.getActiveNetworkInfo();
   if(info==null){
       return 2; // there is no network available now. Anyway we use the default num of thread
   }
    switch (info.getType()) {
        case ConnectivityManager.TYPE_WIFI:
        case ConnectivityManager.TYPE_WIMAX:
        case ConnectivityManager.TYPE_ETHERNET:
            return 4;
        case ConnectivityManager.TYPE_MOBILE:
            return 2;
        default:
            return 2;
    }
}
于 2014-03-06T15:58:20.060 回答