Class BasicETLLoadFunction
java.lang.Object
com.kingsrook.qqq.backend.core.processes.implementations.etl.basic.BasicETLLoadFunction
- All Implemented Interfaces:
BackendStep
Function body for performing the Load step of a basic ETL process.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
run
(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) Execute the backend step - using the request as input, and the result as output.void
setReturnStoredRecords
(boolean returnStoredRecords) Setter for returnStoredRecordsvoid
setTransaction
(QBackendTransaction transaction) Setter for transaction
-
Constructor Details
-
BasicETLLoadFunction
public BasicETLLoadFunction()
-
-
Method Details
-
run
public void run(RunBackendStepInput runBackendStepInput, RunBackendStepOutput runBackendStepOutput) throws QException Description copied from interface:BackendStep
Execute the backend step - using the request as input, and the result as output. TODO - think about - why take the Result object as a param, instead of return it? Is this way easier for inter-language operability maybe? Also - there's way too much "process-specific gunk" in the Request object - can we simplify it?- Specified by:
run
in interfaceBackendStep
- Throws:
QException
-
setTransaction
Setter for transaction -
setReturnStoredRecords
public void setReturnStoredRecords(boolean returnStoredRecords) Setter for returnStoredRecords
-