本文整理匯總了Java中com.facebook.internal.CacheableRequestBatch.setForceRoundTrip方法的典型用法代碼示例。如果您正苦於以下問題:Java CacheableRequestBatch.setForceRoundTrip方法的具體用法?Java CacheableRequestBatch.setForceRoundTrip怎麽用?Java CacheableRequestBatch.setForceRoundTrip使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.facebook.internal.CacheableRequestBatch
的用法示例。
在下文中一共展示了CacheableRequestBatch.setForceRoundTrip方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testCreateEmptyRequestBatch
import com.facebook.internal.CacheableRequestBatch; //導入方法依賴的package包/類
@SmallTest
@MediumTest
@LargeTest
public void testCreateEmptyRequestBatch() {
CacheableRequestBatch batch = new CacheableRequestBatch();
Request meRequest = Request.newMeRequest(null, null);
assertEquals(0, batch.size());
batch.add(meRequest);
assertEquals(1, batch.size());
assertEquals(meRequest, batch.get(0));
String key = "The Key";
assertNull(batch.getCacheKeyOverride());
batch.setCacheKeyOverride(key);
assertEquals(key, batch.getCacheKeyOverride());
assertTrue(!batch.getForceRoundTrip());
batch.setForceRoundTrip(true);
assertTrue(batch.getForceRoundTrip());
}
示例2: putRequestIntoBatch
import com.facebook.internal.CacheableRequestBatch; //導入方法依賴的package包/類
private CacheableRequestBatch putRequestIntoBatch(Request request, boolean skipRoundtripIfCached) {
// We just use the request URL as the cache key.
CacheableRequestBatch batch = new CacheableRequestBatch(request);
// We use the default cache key (request URL).
batch.setForceRoundTrip(!skipRoundtripIfCached);
return batch;
}
示例3: putRequestIntoBatch
import com.facebook.internal.CacheableRequestBatch; //導入方法依賴的package包/類
private CacheableRequestBatch putRequestIntoBatch(Request paramRequest, boolean paramBoolean)
{
CacheableRequestBatch localCacheableRequestBatch = new CacheableRequestBatch(new Request[] { paramRequest });
boolean bool;
if (!paramBoolean)
bool = true;
else
bool = false;
localCacheableRequestBatch.setForceRoundTrip(bool);
return localCacheableRequestBatch;
}
示例4: testCacheMyFriendsRequest
import com.facebook.internal.CacheableRequestBatch; //導入方法依賴的package包/類
@MediumTest
@LargeTest
public void testCacheMyFriendsRequest() throws Exception {
TestUtils.clearFileLruCache(Response.getResponseCache());
TestSession session = openTestSessionWithSharedUser();
Request request = Request.newMyFriendsRequest(session, null);
CacheableRequestBatch batch = new CacheableRequestBatch(request);
batch.setCacheKeyOverride("MyFriends");
// Running the request with empty cache should hit the server.
List<Response> responses = Request.executeBatchAndWait(batch);
assertNotNull(responses);
assertEquals(1, responses.size());
Response response = responses.get(0);
assertNotNull(response);
assertNull(response.getError());
assertTrue(!response.getIsFromCache());
// Running again should hit the cache.
responses = Request.executeBatchAndWait(batch);
assertNotNull(responses);
assertEquals(1, responses.size());
response = responses.get(0);
assertNotNull(response);
assertNull(response.getError());
assertTrue(response.getIsFromCache());
// Forcing roundtrip should hit the server again.
batch.setForceRoundTrip(true);
responses = Request.executeBatchAndWait(batch);
assertNotNull(responses);
assertEquals(1, responses.size());
response = responses.get(0);
assertNotNull(response);
assertNull(response.getError());
assertTrue(!response.getIsFromCache());
TestUtils.clearFileLruCache(Response.getResponseCache());
}
示例5: testCacheMyFriendsRequest
import com.facebook.internal.CacheableRequestBatch; //導入方法依賴的package包/類
@MediumTest
@LargeTest
public void testCacheMyFriendsRequest() throws IOException {
Response.getResponseCache().clearForTest();
TestSession session = openTestSessionWithSharedUser();
Request request = Request.newMyFriendsRequest(session, null);
CacheableRequestBatch batch = new CacheableRequestBatch(request);
batch.setCacheKeyOverride("MyFriends");
// Running the request with empty cache should hit the server.
List<Response> responses = Request.executeBatchAndWait(batch);
assertNotNull(responses);
assertEquals(1, responses.size());
Response response = responses.get(0);
assertNotNull(response);
assertNull(response.getError());
assertTrue(!response.getIsFromCache());
// Running again should hit the cache.
responses = Request.executeBatchAndWait(batch);
assertNotNull(responses);
assertEquals(1, responses.size());
response = responses.get(0);
assertNotNull(response);
assertNull(response.getError());
assertTrue(response.getIsFromCache());
// Forcing roundtrip should hit the server again.
batch.setForceRoundTrip(true);
responses = Request.executeBatchAndWait(batch);
assertNotNull(responses);
assertEquals(1, responses.size());
response = responses.get(0);
assertNotNull(response);
assertNull(response.getError());
assertTrue(!response.getIsFromCache());
Response.getResponseCache().clearForTest();
}