com.exasol.adapter.document.documentfetcher.files.RemoteFileFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtual-schema-common-document-files Show documentation
Show all versions of virtual-schema-common-document-files Show documentation
Adapter for document data access from files.
package com.exasol.adapter.document.documentfetcher.files;
import com.exasol.adapter.document.iterators.CloseableIterator;
/**
* Classes implementing this interface load files from a specific files system type or network storage.
*/
public interface RemoteFileFinder {
/**
* Get the content of the file as stream.
*
* @return content of the file
*/
public CloseableIterator loadFiles();
}