Interface EntityExportService
- All Known Implementing Classes:
EntityExportServiceImpl
public interface EntityExportService
-
Method Summary
Modifier and TypeMethodDescriptionvoid
exportData
(QueryConfigurator queryConfigurator, ExportActionConfig config, ExportDataConsumer dataConsumer) Fetches the data to be exported in an efficient way using aPathQueryBuilder
and passes them on to theExportDataConsumer
.
-
Method Details
-
exportData
void exportData(QueryConfigurator queryConfigurator, ExportActionConfig config, ExportDataConsumer dataConsumer) Fetches the data to be exported in an efficient way using aPathQueryBuilder
and passes them on to theExportDataConsumer
. If big amounts of data are exported, the data is fetched in partitions. The data can be converted to anOutputStream
using an implementation ofEntityExportWriter
.
-