keith-turner commented on code in PR #3929:
URL: https://github.com/apache/accumulo/pull/3929#discussion_r1383663519
##########
core/src/main/java/org/apache/accumulo/core/metadata/schema/Ample.java:
##########
@@ -292,24 +313,26 @@ enum Status {
TabletMetadata readMetadata();
}
- public interface ConditionalTabletsMutator extends AutoCloseable {
-
+ interface AsyncConditionalTabletsMutator extends AutoCloseable {
/**
* @return A fluent interface to conditional mutating a tablet. Ensure you
call
* {@link ConditionalTabletMutator#submit(RejectionHandler)} when
finished.
*/
OperationRequirements mutateTablet(KeyExtent extent);
+ @Override
+ void close();
Review Comment:
The parent method throws Exception and this override removes that, so it
does have a purpose.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]