Skip to content

Commit

Permalink
[FLINK-12539] [fs-connector] Make StreamingFileSink customizable (apa…
Browse files Browse the repository at this point in the history
  • Loading branch information
kailashhd authored and tweise committed May 22, 2019
1 parent f652bb5 commit 7748729
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public class StreamingFileSink<IN>
/**
* Creates a new {@code StreamingFileSink} that writes files to the given base directory.
*/
private StreamingFileSink(
protected StreamingFileSink(
final StreamingFileSink.BucketsBuilder<IN, ?> bucketsBuilder,
final long bucketCheckInterval) {

Expand Down Expand Up @@ -170,7 +170,7 @@ public static <IN> StreamingFileSink.BulkFormatBuilder<IN, String> forBulkFormat
/**
* The base abstract class for the {@link RowFormatBuilder} and {@link BulkFormatBuilder}.
*/
private abstract static class BucketsBuilder<IN, BucketID> implements Serializable {
protected abstract static class BucketsBuilder<IN, BucketID> implements Serializable {

private static final long serialVersionUID = 1L;

Expand Down

0 comments on commit 7748729

Please sign in to comment.