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


Java ResultSetFuture類代碼示例

本文整理匯總了Java中com.datastax.driver.core.ResultSetFuture的典型用法代碼示例。如果您正苦於以下問題:Java ResultSetFuture類的具體用法?Java ResultSetFuture怎麽用?Java ResultSetFuture使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


ResultSetFuture類屬於com.datastax.driver.core包,在下文中一共展示了ResultSetFuture類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: executeAsyncInsert

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncInsert
 * executes Insert Query asynchronously
 * @param yearmonthday
 * @param airportcode
 * @param seqid
 * @param userid
 * @param lastactiveyearmonthday
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncInsert (
  Object yearmonthday,
  Object airportcode,
  Object seqid,
  Object userid,
  Object lastactiveyearmonthday) throws Exception {

  return
    this.getQuery(kInsertName).executeAsync(
      yearmonthday,
      airportcode,
      seqid,
      userid,
      lastactiveyearmonthday);
}
 
開發者ID:vangav,項目名稱:vos_instagram_bots,代碼行數:27,代碼來源:UsersIndex.java

示例2: executeAsyncInsertWithoutLocation

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncInsertWithoutLocation
 * executes InsertWithoutLocation Query asynchronously
 * @param postid
 * @param posttime
 * @param photoid
 * @param caption
 * @param userid
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncInsertWithoutLocation (
  Object postid,
  Object posttime,
  Object photoid,
  Object caption,
  Object userid) throws Exception {

  return
    this.getQuery(kInsertWithoutLocationName).executeAsync(
      postid,
      posttime,
      photoid,
      caption,
      userid);
}
 
開發者ID:vangav,項目名稱:vos_instagram,代碼行數:27,代碼來源:Posts.java

示例3: executeAsyncInsert

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncInsert
 * executes Insert Query asynchronously
 * @param yearmonthdayuserid
 * @param logtime
 * @param requestid
 * @param controllername
 * @param request
 * @param responsestatuscode
 * @param response
 * @param runtimemilliseconds
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncInsert (
  Object yearmonthdayuserid,
  Object logtime,
  Object requestid,
  Object controllername,
  Object request,
  Object responsestatuscode,
  Object response,
  Object runtimemilliseconds) throws Exception {

  return
    this.getQuery(kInsertName).executeAsync(
      yearmonthdayuserid,
      logtime,
      requestid,
      controllername,
      request,
      responsestatuscode,
      response,
      runtimemilliseconds);
}
 
開發者ID:vangav,項目名稱:vos_instagram,代碼行數:36,代碼來源:DailyUsersLogs.java

示例4: executeAsyncInsert

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncInsert
 * executes Insert Query asynchronously
 * @param userid
 * @param messagetime
 * @param senderuserid
 * @param receiveruserid
 * @param messageid
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncInsert (
  Object userid,
  Object messagetime,
  Object senderuserid,
  Object receiveruserid,
  Object messageid) throws Exception {

  return
    this.getQuery(kInsertName).executeAsync(
      userid,
      messagetime,
      senderuserid,
      receiveruserid,
      messageid);
}
 
開發者ID:vangav,項目名稱:vos_whatsapp,代碼行數:27,代碼來源:UserChats.java

示例5: executeAsyncInsert

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncInsert
 * executes Insert Query asynchronously
 * @param airportcode
 * @param latitude
 * @param longitude
 * @param continent
 * @param continentcode
 * @param country
 * @param countrycode
 * @param city
 * @param populationinmillions
 * @param addedyearmonthday
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncInsert (
  Object airportcode,
  Object latitude,
  Object longitude,
  Object continent,
  Object continentcode,
  Object country,
  Object countrycode,
  Object city,
  Object populationinmillions,
  Object addedyearmonthday) throws Exception {

  return
    this.getQuery(kInsertName).executeAsync(
      airportcode,
      latitude,
      longitude,
      continent,
      continentcode,
      country,
      countrycode,
      city,
      populationinmillions,
      addedyearmonthday);
}
 
開發者ID:vangav,項目名稱:vos_instagram_bots,代碼行數:42,代碼來源:Cities.java

示例6: executeAsyncIncrement

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncIncrement
 * executes Increment Query asynchronously
 * @param yearmonthaction
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncIncrement (
  Object yearmonthaction) throws Exception {

  return
    this.getQuery(kIncrementName).executeAsync(
      yearmonthaction);
}
 
開發者ID:vangav,項目名稱:vos_vangav_analytics_writer,代碼行數:15,代碼來源:MonthlyActionCounters.java

示例7: executeAsyncSelect

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncSelect
 * executes Select Query asynchronously
 * @param postid
 * @param userid
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncSelect (
  Object postid,
  Object userid) throws Exception {

  return
    this.getQuery(kSelectName).executeAsync(
      postid,
      userid);
}
 
開發者ID:vangav,項目名稱:vos_instagram,代碼行數:18,代碼來源:PostLikesTime.java

示例8: executeAsyncIncrement

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncIncrement
 * executes Increment Query asynchronously
 * @param postid
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncIncrement (
  Object postid) throws Exception {

  return
    this.getQuery(kIncrementName).executeAsync(
      postid);
}
 
開發者ID:vangav,項目名稱:vos_instagram,代碼行數:15,代碼來源:PostLikesCount.java

示例9: executeAsyncSelect

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncSelect
 * executes Select Query asynchronously
 * @param yearaction
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncSelect (
  Object yearaction) throws Exception {

  return
    this.getQuery(kSelectName).executeAsync(
      yearaction);
}
 
開發者ID:vangav,項目名稱:vos_vangav_analytics_writer,代碼行數:15,代碼來源:AnnualActionCounters.java

示例10: executeAsyncSelect

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncSelect
 * executes Select Query asynchronously
 * @param yearmonthdayairportcode
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncSelect (
  Object yearmonthdayairportcode) throws Exception {

  return
    this.getQuery(kSelectName).executeAsync(
      yearmonthdayairportcode);
}
 
開發者ID:vangav,項目名稱:vos_instagram_bots,代碼行數:15,代碼來源:PostsCount.java

示例11: executeAsyncDelete

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncDelete
 * executes Delete Query asynchronously
 * @param postid
 * @param userid
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncDelete (
  Object postid,
  Object userid) throws Exception {

  return
    this.getQuery(kDeleteName).executeAsync(
      postid,
      userid);
}
 
開發者ID:vangav,項目名稱:vos_instagram_jobs,代碼行數:18,代碼來源:PostLikesTime.java

示例12: executeAsyncSelect

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncSelect
 * executes Select Query asynchronously
 * @param devicetoken
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncSelect (
  Object devicetoken) throws Exception {

  return
    this.getQuery(kSelectName).executeAsync(
      devicetoken);
}
 
開發者ID:vangav,項目名稱:vos_instagram,代碼行數:15,代碼來源:DeviceTokens.java

示例13: executeAsyncSelectAtOrAfterLimit

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncSelectAtOrAfterLimit
 * executes SelectAtOrAfterLimit Query asynchronously
 * @param yearmonthday
 * @param registrationtime
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncSelectAtOrAfterLimit (
  Object yearmonthday,
  Object registrationtime) throws Exception {

  return
    this.getQuery(kSelectAtOrAfterLimitName).executeAsync(
      yearmonthday,
      registrationtime);
}
 
開發者ID:vangav,項目名稱:vos_instagram,代碼行數:18,代碼來源:UsersIndex.java

示例14: executeAsyncDecrement

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncDecrement
 * executes Decrement Query asynchronously
 * @param userid
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncDecrement (
  Object userid) throws Exception {

  return
    this.getQuery(kDecrementName).executeAsync(
      userid);
}
 
開發者ID:vangav,項目名稱:vos_instagram_jobs,代碼行數:15,代碼來源:FollowerCount.java

示例15: executeAsyncSelect

import com.datastax.driver.core.ResultSetFuture; //導入依賴的package包/類
/**
 * executeAsyncSelect
 * executes Select Query asynchronously
 * @param userid
 * @param devicetoken
 * @return ResultSetFuture
 * @throws Exception
 */
public ResultSetFuture executeAsyncSelect (
  Object userid,
  Object devicetoken) throws Exception {

  return
    this.getQuery(kSelectName).executeAsync(
      userid,
      devicetoken);
}
 
開發者ID:vangav,項目名稱:vos_instagram,代碼行數:18,代碼來源:RefreshTokens.java


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