org.elasticsearch.action.bulk.PublicBulkShardRequest 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 PublicBulkShardRequest extends BulkShardRequest {
public PublicBulkShardRequest() {
}
public PublicBulkShardRequest(BulkRequest bulkRequest, String index, int shardId, boolean refresh, BulkItemRequest[] items) {
super(bulkRequest, index, shardId, refresh, items);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy