Package org.apache.iceberg.inmemory
Class InMemoryFileIO
java.lang.Object
org.apache.iceberg.inmemory.InMemoryFileIO
- All Implemented Interfaces:
Closeable
,Serializable
,AutoCloseable
,FileIO
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
close()
Close File IO to release underlying resources.void
deleteFile
(String location) Delete the file at the given path.boolean
fileExists
(String location) boolean
isClosed()
newInputFile
(String location) Get aInputFile
instance to read bytes from the file at the given path.newOutputFile
(String location) Get aOutputFile
instance to write bytes to the file at the given path.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.iceberg.io.FileIO
deleteFile, deleteFile, initialize, newInputFile, newInputFile, newInputFile, newInputFile, properties
-
Constructor Details
-
InMemoryFileIO
public InMemoryFileIO()
-
-
Method Details
-
addFile
-
fileExists
-
newInputFile
Description copied from interface:FileIO
Get aInputFile
instance to read bytes from the file at the given path.- Specified by:
newInputFile
in interfaceFileIO
-
newOutputFile
Description copied from interface:FileIO
Get aOutputFile
instance to write bytes to the file at the given path.- Specified by:
newOutputFile
in interfaceFileIO
-
deleteFile
Description copied from interface:FileIO
Delete the file at the given path.- Specified by:
deleteFile
in interfaceFileIO
-
isClosed
public boolean isClosed() -
close
public void close()Description copied from interface:FileIO
Close File IO to release underlying resources.Calling this method is only required when this FileIO instance is no longer expected to be used, and the resources it holds need to be explicitly released to avoid resource leaks.
-