當前位置: 首頁>>代碼示例>>Java>>正文


Java CacheableRequestBatch.setForceRoundTrip方法代碼示例

本文整理匯總了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());
}
 
開發者ID:GrioSF,項目名稱:facebook-android-sdk,代碼行數:22,代碼來源:BatchRequestTests.java

示例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;
}
 
開發者ID:MobileDev418,項目名稱:AndroidBackendlessChat,代碼行數:8,代碼來源:GraphObjectPagingLoader.java

示例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;
}
 
開發者ID:mmmsplay10,項目名稱:QuizUpWinner,代碼行數:12,代碼來源:GraphObjectPagingLoader.java

示例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());
}
 
開發者ID:kodamirmo,項目名稱:LostAndFound,代碼行數:45,代碼來源:BatchRequestTests.java

示例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();
}
 
開發者ID:GrioSF,項目名稱:facebook-android-sdk,代碼行數:45,代碼來源:BatchRequestTests.java


注:本文中的com.facebook.internal.CacheableRequestBatch.setForceRoundTrip方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。