com.marklogic.flux.api.CustomRowsExporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flux-api Show documentation
Show all versions of flux-api Show documentation
Flux API for data movement with MarkLogic
/*
* Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
*/
package com.marklogic.flux.api;
import java.util.function.Consumer;
/**
* Read rows from MarkLogic and write them using a custom Spark connector or data source.
*/
public interface CustomRowsExporter extends Executor {
CustomRowsExporter from(Consumer consumer);
CustomRowsExporter from(String opticQuery);
CustomRowsExporter to(Consumer consumer);
}