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

Make success hook public #210

Merged
merged 1 commit into from
Nov 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
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