aboutsummaryrefslogtreecommitdiff
path: root/other/java/client
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-02-25 14:38:36 -0800
committerChris Lu <chris.lu@gmail.com>2020-02-25 14:38:36 -0800
commitbc38b72a20bd79bf67ee1770e20dcd538285cedf (patch)
tree004370169251d55fd58d161b1f8b04c2b2641f24 /other/java/client
parent35dde5671186b3fcfd6e8c743064257627f47a77 (diff)
downloadseaweedfs-bc38b72a20bd79bf67ee1770e20dcd538285cedf.tar.xz
seaweedfs-bc38b72a20bd79bf67ee1770e20dcd538285cedf.zip
s3: implemented DeleteMultipleObjects
Diffstat (limited to 'other/java/client')
-rw-r--r--other/java/client/src/main/proto/filer.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 6892effe8..d26c5595f 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -24,6 +24,9 @@ service SeaweedFiler {
rpc DeleteEntry (DeleteEntryRequest) returns (DeleteEntryResponse) {
}
+ rpc StreamDeleteEntries (stream DeleteEntryRequest) returns (stream DeleteEntryResponse) {
+ }
+
rpc AtomicRenameEntry (AtomicRenameEntryRequest) returns (AtomicRenameEntryResponse) {
}
@@ -147,6 +150,7 @@ message DeleteEntryRequest {
}
message DeleteEntryResponse {
+ string error = 1;
}
message AtomicRenameEntryRequest {