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

com.fasterxml.clustermate.client.operation.PutOperationResult Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
package com.fasterxml.clustermate.client.operation;

import java.util.ArrayList;
import java.util.List;

import com.fasterxml.clustermate.client.ClusterServerNode;

public class PutOperationResult extends OperationResultImpl
{
    /**
     * List of servers for which calls succeeded (possibly after initial failures and re-send),
     * in order of call completion.
     */
    protected final List _succeeded;

    public PutOperationResult(OperationConfig config)
    {
        super(config);
        _succeeded = new ArrayList(config.getOptimalOks());
    }

    public PutOperationResult addSucceeded(ClusterServerNode server) {
        _succeeded.add(server);
        return this;
    }

    @Override
    public int getSuccessCount() { return _succeeded.size(); }
    public Iterable getSuccessServers() { return _succeeded; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy