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

de.spinscale.elasticsearch.action.suggest.refresh.SuggestRefreshResponse Maven / Gradle / Ivy

package de.spinscale.elasticsearch.action.suggest.refresh;

import java.io.IOException;
import java.util.List;

import org.elasticsearch.action.ShardOperationFailedException;
import org.elasticsearch.action.support.broadcast.BroadcastOperationResponse;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;


public class SuggestRefreshResponse extends BroadcastOperationResponse {

    public SuggestRefreshResponse() {}

    public SuggestRefreshResponse(int totalShards, int successfulShards, int failedShards, List shardFailures) {
        super(totalShards, successfulShards, failedShards, shardFailures);
    }

    @Override
    public void readFrom(StreamInput in) throws IOException {
        super.readFrom(in);
    }

    @Override
    public void writeTo(StreamOutput out) throws IOException {
        super.writeTo(out);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy