All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.orchestrate.client.BulkSuccessResult Maven / Gradle / Ivy

Go to download

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