Skip to content

Commit

Permalink
feat(s3stream): add missing getter method (#1793)
Browse files Browse the repository at this point in the history
Signed-off-by: Shichao Nie <[email protected]>
  • Loading branch information
SCNieh authored Aug 14, 2024
1 parent 5317eff commit 3133390
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ public Builder threadPrefix(String prefix) {
return this;
}

public String threadPrefix() {
return threadPrefix;
}

public ObjectStorage build() {
if (StringUtils.isEmpty(this.threadPrefix)) {
this.threadPrefix = Long.toString(defaultThreadPrefixCounter.getAndIncrement());
Expand Down

0 comments on commit 3133390

Please sign in to comment.