Package org.apache.flink.core.fs
Interface DuplicatingFileSystem.CopyRequest
-
- Enclosing interface:
- DuplicatingFileSystem
public static interface DuplicatingFileSystem.CopyRequestA pair of source and destination to duplicate a file.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description PathgetDestination()The path where to duplicate the source file.PathgetSource()The path of the source file to duplicate.static DuplicatingFileSystem.CopyRequestof(Path source, Path destination)A factory method for creating a simple pair of source/destination.
-
-
-
Method Detail
-
getSource
Path getSource()
The path of the source file to duplicate.
-
getDestination
Path getDestination()
The path where to duplicate the source file.
-
of
static DuplicatingFileSystem.CopyRequest of(Path source, Path destination)
A factory method for creating a simple pair of source/destination.
-
-