MaxLength 获取区间最大长度
()
| 130 | |
| 131 | // MaxLength 获取区间最大长度 |
| 132 | func (this *PartialFileReader) MaxLength() int64 { |
| 133 | if this.bodySize > 0 { |
| 134 | return this.bodySize |
| 135 | } |
| 136 | return this.ranges.Max() + 1 |
| 137 | } |
| 138 | |
| 139 | func (this *PartialFileReader) Ranges() *PartialRanges { |
| 140 | return this.ranges |
no test coverage detected