-
- All Implemented Interfaces:
-
org.veupathdb.lib.s3.s34k.params.S3RequestParams
public interface BucketListParams implements S3RequestParams
Fetch bucket list request parameters.
-
-
Method Summary
Modifier and Type Method Description abstract Function1<BucketList, Unit>getCallback()Optional callback that will be executed on successful completion of the S3 operation. abstract UnitsetCallback(Function1<BucketList, Unit> callback)Optional callback that will be executed on successful completion of the S3 operation. -
-
Method Detail
-
getCallback
abstract Function1<BucketList, Unit> getCallback()
Optional callback that will be executed on successful completion of the S3 operation.
This callback will be passed the list of buckets retrieved from the S3 store.
-
setCallback
abstract Unit setCallback(Function1<BucketList, Unit> callback)
Optional callback that will be executed on successful completion of the S3 operation.
This callback will be passed the list of buckets retrieved from the S3 store.
-
-
-
-