org.elasticsearch.action.bulk.PublicBulkShardResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-action-updatebyquery Show documentation
Show all versions of elasticsearch-action-updatebyquery Show documentation
The Update By Query feature, as an action plugin for ElasticSearch.
package org.elasticsearch.action.bulk;
import org.elasticsearch.index.shard.ShardId;
public class PublicBulkShardResponse extends BulkShardResponse {
public PublicBulkShardResponse() {
}
public PublicBulkShardResponse(ShardId shardId, BulkItemResponse[] responses) {
super(shardId, responses);
}
}