Navigation :
DLC Request
A DLC Request contains information on which Operation
the DataLoadControllerService should perform and parameters for that operation.
The request results in a DLC Response.
REST
REST requests can be submitted to DataLoadControllerService via the /connectors/rest/dlc/v2/execute
endpoint.
{
"operation": "LOAD",
"topics": [ "trades" ]
}
Java
Java requests can be submitted to DataLoadControllerService via the execute
method.
DlcLoadRequest request = DlcLoadRequest.builder()
.topics("trades")
.build();