本文整理汇总了Java中com.android.volley.toolbox.BasicNetwork类的典型用法代码示例。如果您正苦于以下问题:Java BasicNetwork类的具体用法?Java BasicNetwork怎么用?Java BasicNetwork使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
BasicNetwork类属于com.android.volley.toolbox包,在下文中一共展示了BasicNetwork类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getRequestQueue
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
public RequestQueue getRequestQueue() {
if (mRequestQueue == null) {
// Instantiate the cache
Cache cache = new DiskBasedCache(mContext.getCacheDir(), 1024 * 1024); // 1MB cap
// Set up the network to use HttpURLConnection as the HTTP client.
Network network = new BasicNetwork(new HurlStack());
// Instantiate the RequestQueue with the cache and network.
mRequestQueue = new RequestQueue(cache, network);
// Start the queue
mRequestQueue.start();
// getApplicationContext() is key, it keeps you from leaking the
// Activity or BroadcastReceiver if someone passes one in.
//mRequestQueue = Volley.newRequestQueue(mContext.getApplicationContext());
}
return mRequestQueue;
}
示例2: newVolleyRequestQueueForTest
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
private RequestQueue newVolleyRequestQueueForTest(final Context context) {
File cacheDir = new File(context.getCacheDir(), "cache/volley");
Network network = new BasicNetwork(new HurlStack());
ResponseDelivery responseDelivery = new ExecutorDelivery(Executors.newSingleThreadExecutor());
RequestQueue queue = new RequestQueue(new DiskBasedCache(cacheDir), network, 4, responseDelivery);
queue.start();
return queue;
}
示例3: getRequestQueue
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
public RequestQueue getRequestQueue() {
if (requestQueue == null) {
// getApplicationContext() is key, it keeps you from leaking the
// Activity or BroadcastReceiver if someone passes one in.
if (ctx == null) {
requestQueue = new RequestQueue(new NoCache(), new BasicNetwork(new OkHttp3Stack()));
} else {
if (StringUtils.isBlank(trustedHostname)) {
requestQueue = Volley.newRequestQueue(ctx.getApplicationContext(),
new OkHttp3Stack());
} else {
requestQueue = Volley.newRequestQueue(ctx.getApplicationContext(),
new OkHttp3Stack(ClientUtils.newCustomSocketFactory(trustedHostname)));
}
}
}
return requestQueue;
}
示例4: newRequestQueue
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
/**
* Creates a new Request Queue which caches to the external storage directory
* @param context
* @return
*/
private static RequestQueue newRequestQueue(Context context) {
// define cache folder
File rootCache = context.getExternalCacheDir();
if (rootCache == null) {
Log.w(TAG, "Can't find External Cache Dir, "
+ "switching to application specific cache directory");
rootCache = context.getCacheDir();
}
File cacheDir = new File(rootCache, DEFAULT_CACHE_DIR);
cacheDir.mkdirs();
HttpStack stack = new HurlStack();
Network network = new BasicNetwork(stack);
DiskBasedCache diskBasedCache = new DiskBasedCache(cacheDir, DEFAULT_DISK_USAGE_BYTES);
RequestQueue queue = new RequestQueue(diskBasedCache, network);
queue.start();
return queue;
}
示例5: newRequestQueue
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
/**
* volley's default implementation uses internal cache only so we've implemented our, allowing
* external cache usage.
*/
@NonNull
private static RequestQueue newRequestQueue(@NonNull final Context context,
@Nullable HttpStack stack) {
final VolleyHelperFactory.IVolleyHelper helper = VolleyHelperFactory.newHelper();
final File cacheDir = helper.getBestCacheDir(context);
if (stack == null) {
stack = helper.createHttpStack(context);
}
final Network network = new BasicNetwork(stack);
final RequestQueue queue = new RequestQueue(
new DiskBasedCache(cacheDir, ApplicationConfig.CACHE_DISK_USAGE_BYTES), network, 1);
queue.start();
return queue;
}
示例6: newRequestQueue
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
/**
* volley's default implementation uses internal cache only so we've implemented our, allowing
* external cache usage.
*/
private static RequestQueue newRequestQueue(@NonNull final Context context,
@Nullable HttpStack stack) {
final VolleyHelperFactory.IVolleyHelper helper = VolleyHelperFactory.newHelper();
final File cacheDir = helper.getBestCacheDir(context);
if (stack == null) {
stack = helper.createHttpStack(context);
}
final Network network = new BasicNetwork(stack);
final RequestQueue queue = new RequestQueue(
new DiskBasedCache(cacheDir, ApplicationConfig.CACHE_DISK_USAGE_BYTES), network, 1);
queue.start();
return queue;
}
示例7: newRequestQueue
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
private static RequestQueue newRequestQueue() {
VolleyLog.DEBUG = true;
RequestQueue requestQueue = new RequestQueue(openCache(), new BasicNetwork(new HurlStack()));
requestQueue.start();
CookieManager manager = new CookieManager(new SimpleCookieStore(), CookiePolicy.ACCEPT_ORIGINAL_SERVER);
CookieHandler.setDefault(manager);
// String userAgent = "volley/0";
// try {
// String packageName = BaseApplication.getBaseApplication().getPackageName();
// PackageInfo info = BaseApplication.getBaseApplication().getPackageManager().getPackageInfo(packageName, 0);
// userAgent = packageName + "/" + info.versionCode;
// } catch (PackageManager.NameNotFoundException e) {}
// android.net.http.AndroidHttpClient httpClient = AndroidHttpClient.newInstance(userAgent);
// HttpStack httpStack = new OwnHttpClientStack(httpClient);
// RequestQueue requestQueue = Volley.newRequestQueue(BaseApplication.getBaseApplication(),
// httpStack);
return requestQueue;
}
示例8: newRequestQueue
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
private static RequestQueue newRequestQueue(Context context) {
// On HC+ use HurlStack which is based on HttpURLConnection. Otherwise fall back on
// AndroidHttpClient (based on Apache DefaultHttpClient) which should no longer be used
// on newer platform versions where HttpURLConnection is simply better.
Network network = new BasicNetwork(
UIUtils.hasHoneycomb() ?
new HurlStack() :
new HttpClientStack(AndroidHttpClient.newInstance(
NetUtils.getUserAgent(context))));
Cache cache = new DiskBasedCache(getDiskCacheDir(context, CACHE_DIR));
RequestQueue queue = new RequestQueue(cache, network);
queue.start();
return queue;
}
示例9: prepare
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
@Override
public RequestPipeline prepare(States.GenericState state) {
NetworkResponse resp = Util.newResponse(state);
HttpResponse vResp = new BasicHttpResponse(new ProtocolVersion("HTTP", 1, 1),
resp.statusCode, "OK");
vResp.setEntity(new ByteArrayEntity(resp.data));
for(String h:resp.headers.names()) {
vResp.setHeader(h,resp.headers.get(h));
}
MockVolleyHttpStack stack = new MockVolleyHttpStack();
stack.setResponseToReturn(vResp);
this.requestQueue = new com.android.volley.RequestQueue(
new VolleyNoCache(),
new BasicNetwork(stack),
state.concurrencyLevel
);
requestQueue.start();
return this;
}
示例10: newRequestQueue
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
private RequestQueue newRequestQueue(Context context) {
// define cache folder
File rootCache = context.getExternalCacheDir();
if (rootCache == null) {
rootCache = context.getCacheDir();
}
File cacheDir = new File(rootCache, DEFAULT_CACHE_DIR);
cacheDir.mkdirs();
HttpStack stack = new HurlStack();
Network network = new BasicNetwork(stack);
DiskBasedCache diskBasedCache = new DiskBasedCache(cacheDir, DEFAULT_DISK_USAGE_BYTES);
RequestQueue queue = new RequestQueue(diskBasedCache, network);
queue.start();
return queue;
}
示例11: onCreate
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
@Override
public void onCreate() {
super.onCreate();
PREFS = new PreferenceWrapper( this );
PREFS.listen();
DISK_CACHE = new DiskBasedCache( getExternalCacheDir(), DISK_CACHE_SIZE );
MEMORY_CACHE = new MangaMemoryCache();
// Use the same disk cache for main and background download queues
REQUEST_QUEUE = new RequestQueue( DISK_CACHE, new BasicNetwork( new HurlStack() ));
REQUEST_QUEUE.start();
// Use a custom in-memory LruCache for the loader
IMAGE_LOADER = new ImageLoader( REQUEST_QUEUE, MEMORY_CACHE );
// Setup databases
Library.setDB( LibraryDatabaseHelper.getInstance( this ).getWritableDatabase() );
Collection.setDB( CollectionDatabaseHelper.getInstance( this ).getWritableDatabase() );
MangaUpdateReceiver.startUpdateCycle( this );
}
示例12: QMusicRequestManager
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
/**
* Use a custom L2 cache,support LRU
*
* @param context
* @param uniqueName
* @param diskCacheSize
* @param memCacheSize
* @param compressFormat
* @param quality
* @param type
*/
private QMusicRequestManager(final Context context, final int diskCacheSize, final int memCacheSize) {
// ============L2 Cache=============
HttpStack stack = getHttpStack(false);
Network network = new BasicNetwork(stack);
if (L2CacheType == 0) {
// TODO: this L2 cache implement ignores the HTTP cache headers
mCacheL2 = new VolleyL2DiskLruCache(new File(context.getCacheDir(), "L2-Cache"), diskCacheSize);
} else {
// The build-in L2 cache has no LRU
mCacheL2 = new DiskBasedCache(new File(context.getCacheDir(), "L2-Cache"), diskCacheSize);
}
mRequestQueue = new RequestQueue(mCacheL2, network);
mRequestQueue.start();
// ============L1 Cache=============
if (L1CacheType == 0) {
mCacheL1 = new VolleyL1MemoryLruImageCache(memCacheSize);
} else {
mCacheL1 = new VolleyL1DiskLruImageCache(context, "L1-Cache", diskCacheSize, CompressFormat.JPEG, 80);
}
mImageLoader = new ImageLoader(mRequestQueue, mCacheL1);
}
示例13: onCreate
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
@Override
public boolean onCreate() {
Context context = getContext();
if (context == null) {
return false;
}
if (!AppPerformanceConfig.enabled) {
return false; // Return when instrumentation is disabled
}
RequestQueue queue = new RequestQueue(new NoCache(), new BasicNetwork(new HurlStack()));
queue.start();
BatteryInfoStore batteryInfoStore = new BatteryInfoStore(context);
String subscriptionKey = Util.getSubscriptionKey(context);
String configUrlPrefix = Util
.getMeta(context, "com.rakuten.tech.mobile.perf.ConfigurationUrlPrefix");
String relayAppId = Util.getRelayAppId(context);
ConfigStore configStore = new ConfigStore(context, queue, relayAppId, subscriptionKey,
configUrlPrefix);
// Read last config from cache
Config config = createConfig(context, configStore.getObservable().getCachedValue(), relayAppId);
if (config != null) {
String locationUrlPrefix = Util
.getMeta(context, "com.rakuten.tech.mobile.perf.LocationUrlPrefix");
LocationStore locationStore = new LocationStore(context, queue, subscriptionKey,
locationUrlPrefix);
// Initialise Tracking Manager
TrackingManager.initialize(context, config, locationStore.getObservable(),
batteryInfoStore.getObservable());
Metric.start("_launch");
}
return false;
}
示例14: start
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
/**
* Inicia uma instancia da lib PlainRequest
* utilizando cache do volley
*
* @param app
* @param sizeCache // tamanho do cache em MB
*/
public void start(Application app, int sizeCache) {
if(context == null) {
context = app.getApplicationContext();
// Cache
Cache cache = new DiskBasedCache(app.getCacheDir(), (1024 * 1024) * sizeCache);
Network network = new BasicNetwork(new HurlStack());
queue = new RequestQueue(cache, network); // Criação do RequestQueue
}
}
示例15: RemoteDataSource
import com.android.volley.toolbox.BasicNetwork; //导入依赖的package包/类
public RemoteDataSource(String url) {
mUrl = url;
// TODO: context should be Application context + this should be a singleton
// mRequestQueue = Volley.newRequestQueue(context.getApplicationContext());
mRequestQueue = new RequestQueue(new NoCache(), new BasicNetwork(new HurlStack()));
//TODO: disable volley cache
mRequestQueue.start();
}