asyncMultiSet
异步写同一HashKey下的多行数据。
- public static interface MultiSetListener extends GenericFutureListener<Future<Void>> {
- /**
- * This function will be called when listened asyncMultiSet future is done.
- * @param future the listened future
- * @throws Exception
- *
- * Notice: User shouldn't do any operations that may block or time-consuming
- */
- @Override
- public void operationComplete(Future<Void> future) throws Exception;
- }
- /**
- * Set key-values for a specific hashKey, async version
- * @param hashKey used to decide which partition the key may exist
- * if null or empty, means hash key is "".
- * @param values all (sortKey, value) pairs
- * should not be null or empty
- * @param ttlSeconds time to live in seconds
- * 0 means no ttl, default value is 0
- * @param timeout how long will the operation timeout in milliseconds.
- * if timeout > 0, it is a timeout value for current op,
- * else the timeout value in the configuration file will be used.
- *
- * @return the future for current op
- *
- * Future return:
- * On success: no return
- * On failure: a throwable, which is an instance of PException
- *
- * Thread safety:
- * All the listeners for the same table are guaranteed to be dispatched in the same thread, so all the
- * listeners for the same future are guaranteed to be executed as the same order as the listeners added.
- * But listeners for different tables are not guaranteed to be dispatched in the same thread.
- */
- public Future<Void> asyncMultiSet(byte[] hashKey, List<Pair<byte[], byte[]>> values, int ttlSeconds, int timeout/*ms*/);
- public Future<Void> asyncMultiSet(byte[] hashKey, List<Pair<byte[], byte[]>> values, int timeout/*ms*/);
注:
- 提供了两个版本的接口,其中第一个接口可以指定TTL时间。
- 参数:需传入HashKey、Values、timeout;选择性传入ttlSeconds。
- Values是Pair列表,Pair的第一个元素是SortKey,第二个元素为value。
- timeout单位为毫秒,如果<=0,表示使用配置文件中的默认超时。
- ttlSeconds是数据的TTL时间,单位为秒。0表示不设置TTL时间。
- 返回值:Future
。