IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Delete License
editDelete License
editExecution
editThe license can be deleted using the deleteLicense()
method:
DeleteLicenseRequest request = new DeleteLicenseRequest(); AcknowledgedResponse response = client.license().deleteLicense(request, RequestOptions.DEFAULT);
Response
editThe returned DeleteLicenseResponse
contains the acknowledged
flag, which
returns true if the request was processed by all nodes.
Asynchronous Execution
editThis request can be executed asynchronously:
The asynchronous method does not block and returns immediately. Once it is
completed the ActionListener
is called back using the onResponse
method
if the execution successfully completed or using the onFailure
method if
it failed.
A typical listener for DeleteLicenseResponse
looks like: