Interface InputSplitFetcher
-
- All Known Implementing Classes:
HugeInputSplitFetcher,LoaderFileInputSplitFetcher
public interface InputSplitFetcher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Close the resources used in the input split fetchjava.util.List<InputSplit>fetchEdgeInputSplits()Fetch all edge input splits just oncejava.util.List<InputSplit>fetchVertexInputSplits()Fetch all vertex input splits just once
-
-
-
Method Detail
-
close
void close()
Close the resources used in the input split fetch
-
fetchVertexInputSplits
java.util.List<InputSplit> fetchVertexInputSplits()
Fetch all vertex input splits just once- Returns:
- all vertex input splits
-
fetchEdgeInputSplits
java.util.List<InputSplit> fetchEdgeInputSplits()
Fetch all edge input splits just once- Returns:
- all edge input splits
-
-