asyncSet

异步写单行数据。

  1. public static interface SetListener extends GenericFutureListener<Future<Void>> {
  2. /**
  3. * This function will be called when listened asyncSet future is done.
  4. * @param future the listened future
  5. * @throws Exception
  6. *
  7. * Notice: User shouldn't do any operations that may block or time-consuming
  8. */
  9. @Override
  10. public void operationComplete(Future<Void> future) throws Exception;
  11. }
  12.  
  13. /**
  14. * Set value for a specific (hashKey, sortKey) pair, async version
  15. * @param hashKey used to decide which partition the key may exist
  16. * if null or empty, means hash key is "".
  17. * @param sortKey all keys under the same hashKey will be sorted by sortKey
  18. * if null or empty, means sort key is "".
  19. * @param value should not be null
  20. * @param ttlSeconds time to live in seconds
  21. * 0 means no ttl, default value is 0
  22. * @param timeout how long will the operation timeout in milliseconds.
  23. * if timeout > 0, it is a timeout value for current op,
  24. * else the timeout value in the configuration file will be used.
  25. *
  26. * @return the future for current op
  27. *
  28. * Future return:
  29. * On success: no return
  30. * On failure: a throwable, which is an instance of PException
  31. *
  32. * Thread safety:
  33. * The api is thread safe.
  34. * All the listeners for the same table are guaranteed to be dispatched in the same thread, so all the
  35. * listeners for the same future are guaranteed to be executed as the same order as the listeners added.
  36. * But listeners for different tables are not guaranteed to be dispatched in the same thread.
  37. */
  38. public Future<Void> asyncSet(byte[] hashKey, byte[] sortKey, byte[] value, int ttlSeconds, int timeout/*ms*/);
  39. public Future<Void> asyncSet(byte[] hashKey, byte[] sortKey, byte[] value, int timeout/*ms*/);

注:

  • 提供了两个版本的接口,其中第一个接口可以指定TTL时间。
  • 参数:需传入HashKey、SortKey、Value、timeout;选择性传入TTL。
    • timeout单位为毫秒,如果<=0,表示使用配置文件中的默认超时。
    • ttlSeconds是数据的TTL时间,单位为秒。0表示不设置TTL时间。
  • 返回值:Future