Skip to content
This repository has been archived by the owner on Aug 31, 2022. It is now read-only.

Commit

Permalink
Merge pull request #210 from spotify/bqjob-success
Browse files Browse the repository at this point in the history
Make success hook public
  • Loading branch information
narape committed Nov 12, 2019
2 parents 378cd74 + b250270 commit 16f30bd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -52,7 +52,7 @@ BigQueryOperation<T> job(Fn<JobInfo> jobRequest) {
/**
* Specify some action to take on success. E.g. publishing a staging table.
*/
BigQueryOperation<T> success(F1<JobInfo, T> success) {
public BigQueryOperation<T> success(F1<JobInfo, T> success) {
this.success = Objects.requireNonNull(success);
return this;
}
Expand Down

0 comments on commit 16f30bd

Please sign in to comment.