listobject v1 未使用chan

This commit is contained in:
weisd
2024-08-20 14:49:15 +08:00
parent 25e98cd1e2
commit edf56c122f
6 changed files with 188 additions and 53 deletions
+9 -9
View File
@@ -10,8 +10,8 @@ use crate::{
error::Result,
set_disk::SetDisks,
store_api::{
BucketInfo, BucketOptions, CompletePart, GetObjectReader, HTTPRangeSpec, ListObjectsInfo, ListObjectsV2Info,
MakeBucketOptions, MultipartUploadResult, ObjectInfo, ObjectOptions, PartInfo, PutObjReader, StorageAPI,
BucketInfo, BucketOptions, CompletePart, GetObjectReader, HTTPRangeSpec, ListObjectsV2Info, MakeBucketOptions,
MultipartUploadResult, ObjectInfo, ObjectOptions, PartInfo, PutObjReader, StorageAPI,
},
utils::hash,
};
@@ -137,13 +137,13 @@ impl StorageAPI for Sets {
async fn list_objects_v2(
&self,
bucket: &str,
prefix: &str,
continuation_token: &str,
delimiter: &str,
max_keys: i32,
fetch_owner: bool,
start_after: &str,
_bucket: &str,
_prefix: &str,
_continuation_token: &str,
_delimiter: &str,
_max_keys: i32,
_fetch_owner: bool,
_start_after: &str,
) -> Result<ListObjectsV2Info> {
unimplemented!()
}