[HUDI-4078][HUDI-FLINK]BootstrapOperator contains the pending compact… (#5545)
* [HUDI-4078][HUDI-FLINK]BootstrapOperator contains the pending compaction files
This commit is contained in:
@@ -124,7 +124,7 @@ public interface TableFileSystemView {
|
||||
* @param maxInstantTime Max Instant Time
|
||||
* @return
|
||||
*/
|
||||
public Stream<FileSlice> getLatestMergedFileSlicesBeforeOrOn(String partitionPath, String maxInstantTime);
|
||||
Stream<FileSlice> getLatestMergedFileSlicesBeforeOrOn(String partitionPath, String maxInstantTime);
|
||||
|
||||
/**
|
||||
* Stream all the latest file slices, in the given range.
|
||||
|
||||
@@ -33,28 +33,28 @@ public interface Functions {
|
||||
/**
|
||||
* A function which has not any parameter.
|
||||
*/
|
||||
public interface Function0<R> extends Serializable {
|
||||
interface Function0<R> extends Serializable {
|
||||
R apply();
|
||||
}
|
||||
|
||||
/**
|
||||
* A function which contains only one parameter.
|
||||
*/
|
||||
public interface Function1<T1, R> extends Serializable {
|
||||
interface Function1<T1, R> extends Serializable {
|
||||
R apply(T1 val1);
|
||||
}
|
||||
|
||||
/**
|
||||
* A function which contains two parameters.
|
||||
*/
|
||||
public interface Function2<T1, T2, R> extends Serializable {
|
||||
interface Function2<T1, T2, R> extends Serializable {
|
||||
R apply(T1 val1, T2 val2);
|
||||
}
|
||||
|
||||
/**
|
||||
* A function which contains three parameters.
|
||||
*/
|
||||
public interface Function3<T1, T2, T3, R> extends Serializable {
|
||||
interface Function3<T1, T2, T3, R> extends Serializable {
|
||||
R apply(T1 val1, T2 val2, T3 val3);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user