2
일부 AQuery 코드 here을 검토 중이었고 AQuery에서 네트워크 연결 수를 수정할 수있는 방법이 있다는 것을 알았습니다.Retrofit에서 최대 네트워크 연결 수를 설정하는 방법
개장시이 작업을 수행 할 수있는 방법이 있습니까? 그리고 개장시 기본값은 무엇입니까? 개조의 예를 들어 연결
/* Settings of Image */
//set the max number of concurrent network connections, default is 4
AjaxCallback.setNetworkLimit(8);
//set the max number of icons (image width <= 50) to be cached in memory, default is 20
BitmapAjaxCallback.setIconCacheLimit(50);
//set the max number of images (image width > 50) to be cached in memory, default is 20
BitmapAjaxCallback.setCacheLimit(50);
aq = new AQuery(context);