@@ -334,11 +334,10 @@ default CompletableFuture<Boolean> blobbifyRange(byte[] beginKey, byte[] endKey)
334
334
CompletableFuture <Boolean > blobbifyRange (byte [] beginKey , byte [] endKey , Executor e );
335
335
336
336
/**
337
- * Runs {@link #blobbifyRange (byte[] beginKey, byte[] endKey, boolean wait )} on the default executor.
337
+ * Runs {@link #blobbifyRangeBlocking (byte[] beginKey, byte[] endKey, Executor e )} on the default executor.
338
338
*
339
339
* @param beginKey start of the key range
340
340
* @param endKey end of the key range
341
- * @param wait wait for blobbification to complete
342
341
343
342
* @return if the recording of the range was successful
344
343
*/
@@ -351,7 +350,6 @@ default CompletableFuture<Boolean> blobbifyRangeBlocking(byte[] beginKey, byte[]
351
350
*
352
351
* @param beginKey start of the key range
353
352
* @param endKey end of the key range
354
- * @param wait wait for blobbification to complete
355
353
* @param e the {@link Executor} to use for asynchronous callbacks
356
354
357
355
* @return if the recording of the range was successful
@@ -444,7 +442,7 @@ default CompletableFuture<Long> verifyBlobRange(byte[] beginKey, byte[] endKey,
444
442
CompletableFuture <Long > verifyBlobRange (byte [] beginKey , byte [] endKey , long version , Executor e );
445
443
446
444
/**
447
- * Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey)} on the default executor.
445
+ * Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey, boolean compact, long version, Executor e )} on the default executor.
448
446
*
449
447
* @param beginKey start of the key range
450
448
* @param endKey end of the key range
@@ -457,7 +455,7 @@ default CompletableFuture<Boolean> flushBlobRange(byte[] beginKey, byte[] endKey
457
455
}
458
456
459
457
/**
460
- * Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey, long version)} on the default executor.
458
+ * Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey, boolean compact, long version, Executor e )} on the default executor.
461
459
*
462
460
* @param beginKey start of the key range
463
461
* @param endKey end of the key range
0 commit comments