Skip to content

Commit

Permalink
FMWK-559-read-after-parameter
Browse files Browse the repository at this point in the history
- added comments
  • Loading branch information
filkeith committed Oct 1, 2024
1 parent 6ef9150 commit 4e665eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions io/azure/blob/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ func WithUploadConcurrency(v int) Opt {
}

// WithMarker adds marker parameter to list request.
// The Value of marker will be not included in a result.
// You will receive objects after marker.
// Is used only for Reader.
func WithMarker(v string) Opt {
return func(r *options) {
Expand Down
2 changes: 2 additions & 0 deletions io/gcp/storage/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ func WithRemoveFiles() Opt {
}

// WithStartOffset adds start offset parameter to list request.
// The Value of start offset will be included in a result.
// You will receive objects including start offset.
// Is used only for Reader.
func WithStartOffset(v string) Opt {
return func(r *options) {
Expand Down

0 comments on commit 4e665eb

Please sign in to comment.