io.orchestrate.client.BulkSuccessResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orchestrate-client Show documentation
Show all versions of orchestrate-client Show documentation
A high performance, asynchronous Java client to query the Orchestrate.io service.
The newest version!
package io.orchestrate.client;
/**
* The result of a successful bulk operation request.
*
* @param Provides additional details. {@link ItemPath} represents a KV item and
* {@link EventPath} represents an event.
*/
public class BulkSuccessResult extends BulkResult {
private final TItemPath itemPath;
public BulkSuccessResult(int operationIndex, TItemPath itemPath) {
super(BulkResultStatus.SUCCESS, operationIndex);
this.itemPath = itemPath;
}
/**
* @return Provides additional details about the bulk operation if available.
*/
public TItemPath getItemPath() {
return itemPath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy