Skip to content

Commit

Permalink
[FLINK-15872][javadoc] Remove unnessary javadocs in InputFormat
Browse files Browse the repository at this point in the history
  • Loading branch information
link3280 authored and aljoscha committed Feb 5, 2020
1 parent b3c86a8 commit 0905647
Showing 1 changed file with 4 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,26 +86,12 @@ public interface InputFormat<OT, T extends InputSplit> extends InputSplitSource<
* @return The base statistics for the input, or null, if not available.
*/
BaseStatistics getStatistics(BaseStatistics cachedStatistics) throws IOException;

/**
* Creates the different splits of the input that can be processed in parallel.
* <p>
* When this method is called, the input format it guaranteed to be configured.
*
* @param minNumSplits The minimum desired number of splits. If fewer are created, some parallel
* instances may remain idle.
* @return The splits of this input that can be processed in parallel.
*
* @throws IOException Thrown, when the creation of the splits was erroneous.
*/

// --------------------------------------------------------------------------------------------

@Override
T[] createInputSplits(int minNumSplits) throws IOException;

/**
* Gets the type of the input splits that are processed by this input format.
*
* @return The type of the input splits.
*/

@Override
InputSplitAssigner getInputSplitAssigner(T[] inputSplits);

Expand Down

0 comments on commit 0905647

Please sign in to comment.