Navigation :
test ../ test whats-new.html
What's New
test ../ test data-connectors-overview.html
Atoti Data Connectors Overview
test ../ test data-connectors-overview/tracing.html
- Tracing
test ../ test changelog.html
Release and migration notes
test ../ test dee-overview.html
Data Extraction Engine
test ../ test dlc-overview.html
Data Load Controller
test ../ test dlc-overview/getting-started.html
- Getting Started
test ../ test dlc-overview/operations.html
-
Operations
test ../ test dlc-overview/operations/operations-load.html
-- Load
test ../ test dlc-overview/operations/operations-unload.html
-- Unload
test ../ test dlc-overview/operations/operations-start-listen.html
-- Start Listen
test ../ test dlc-overview/operations/operations-stop-listen.html
-- Stop Listen
test ../ test dlc-overview/operations/operations-listen-status.html
-- Listen Status
test ../ test dlc-overview/request-api.html
-
Request API
test ../ test dlc-overview/configuration.html
-
Configuration
test ../ test dlc-overview/components.html
-
Components
test ../ test dlc-overview/functional.html
-
Functional
test ../ test dlc-overview/extensions.html
-
Extensions
test ../ test deprecated-dlc-overview.html
Data Load Controller (Deprecated)
Operations
DLC operations are Spring Beans that extend from the IDlcOperation
interface.
IDlcOperation
process(IDlcRequest request)
- processes the incoming DLC Request .
getName()
- returns the key for the operation, referenced by the operation
parameter
in the DLC Request .
Default Operations
The DLC comes with some operations out of the box. These operations can be triggered by submitting a request to
the DataLoadControllerService .
LOAD - Loads data into the datastore.
UNLOAD - Unloads data from the datastore.
START_LISTEN - Start a listening for files, triggering a load operation when a file is detected.
LISTEN_STATUS - Gets the status of a listener
STOP_LISTEN - Stop listening for files.
Custom Operations
The default DLC operations can be found in DefaultDlcOperationsConfig
class.
For information on how to customize the default operations and add new ones, see Custom Operations .