steveloughran commented on a change in pull request #568: HADOOP-15691 Add PathCapabilities
to FS and FC to complement StreamCapabilities
URL: https://github.com/apache/hadoop/pull/568#discussion_r317265105
##########
File path: hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/AbstractFileSystem.java
##########
@@ -1362,4 +1364,24 @@ public boolean equals(Object other) {
new CompletableFuture<>(), () -> open(path, bufferSize));
}
+ /**
+ * Return the base capabilities of the filesystems
+ * may override to declare different behavior.
+ * @param path path to query the capability of.
+ * @param capability string to query the stream support for.
+ * @return true if the capability is supported under that part of the FS.
+ * @throws IOException on failure
Review comment:
I've just deleted the whole javadoc; the interface says what it does.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
users@infra.apache.org
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org
|