diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/ExistsParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/ExistsParams.kt index 0f1f7a6e..8bd1f306 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/ExistsParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/ExistsParams.kt @@ -20,14 +20,4 @@ interface ExistsParams : RegionRequestParams { * bucket or object exists in the S3 store. */ var callback: ((exists: Boolean) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/bucket/BucketGetParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/bucket/BucketGetParams.kt index 3797102b..6be16343 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/bucket/BucketGetParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/bucket/BucketGetParams.kt @@ -20,14 +20,4 @@ interface BucketGetParams : RegionRequestParams { * store if the target bucket exists, otherwise `null`. */ var callback: ((bucket: S3Bucket?) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/bucket/BucketListParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/bucket/BucketListParams.kt index afe33c6f..8a84e88c 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/bucket/BucketListParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/bucket/BucketListParams.kt @@ -20,14 +20,4 @@ interface BucketListParams : S3RequestParams { * store. */ var callback: ((buckets: BucketList) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectGetParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectGetParams.kt index fcac95d5..a36f80f0 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectGetParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectGetParams.kt @@ -20,14 +20,4 @@ interface ObjectGetParams : RegionRequestParams { * object exists, otherwise it will be passed a `null` value. */ var callback: ((handle: S3Object?) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectListAllParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectListAllParams.kt index f9f9ffb0..5e17ea4a 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectListAllParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectListAllParams.kt @@ -12,14 +12,4 @@ interface ObjectListAllParams : RegionRequestParams { * The callback will be passed an [ObjectList] value. */ var callback: ((objects: ObjectList) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectListParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectListParams.kt index 70fbfad3..1e1e52b7 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectListParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectListParams.kt @@ -21,14 +21,4 @@ interface ObjectListParams : RegionRequestParams { * This callback will be passed a list of objects retrieved from the store. */ var callback: ((ObjectList) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectOpenParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectOpenParams.kt index 0cf25064..12655733 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectOpenParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectOpenParams.kt @@ -21,14 +21,4 @@ interface ObjectOpenParams : RegionRequestParams { * object does not exist, this callback will be passed a `null` value. */ var callback: ((StreamObject?) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectStatParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectStatParams.kt index 725a8e08..78917b3d 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectStatParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/ObjectStatParams.kt @@ -19,14 +19,4 @@ interface ObjectStatParams : RegionRequestParams { * This callback will be passed the metadata returned for the target object. */ var callback: ((ObjectMeta?) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/SubPathListParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/SubPathListParams.kt index 9917ae73..bccab8b5 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/SubPathListParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/object/SubPathListParams.kt @@ -25,14 +25,4 @@ interface SubPathListParams : RegionRequestParams { * This callback will be passed a list of objects retrieved from the store. */ var callback: ((SubPathListing) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file diff --git a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/tag/TagGetParams.kt b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/tag/TagGetParams.kt index fe2ed260..34f13e97 100644 --- a/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/tag/TagGetParams.kt +++ b/src/main/kotlin/org/veupathdb/lib/s3/s34k/params/tag/TagGetParams.kt @@ -20,14 +20,4 @@ interface TagGetParams : RegionRequestParams { * from the target. */ var callback: ((TagMap) -> Unit)? - - /** - * Controls the number of retry attempts that will be made on an exception - * while reading from S3. - * - * Defaults to 1. - * - * @since v0.11.0 - */ - var retries: Int } \ No newline at end of file