Package | Description |
---|---|
org.elasticsearch.action.admin.indices.refresh |
Refresh index/indices action.
|
org.elasticsearch.client |
The client module allowing to easily perform actions/operations.
|
org.elasticsearch.client.support |
Modifier and Type | Method and Description |
---|---|
RefreshRequest |
RefreshRequest.force(boolean force)
Deprecated.
unnecessary flag since 1.5.0
|
protected RefreshRequest |
TransportRefreshAction.newRequest() |
Modifier and Type | Method and Description |
---|---|
protected ClusterBlockException |
TransportRefreshAction.checkGlobalBlock(ClusterState state,
RefreshRequest request) |
protected ClusterBlockException |
TransportRefreshAction.checkRequestBlock(ClusterState state,
RefreshRequest countRequest,
String[] concreteIndices) |
protected RefreshResponse |
TransportRefreshAction.newResponse(RefreshRequest request,
AtomicReferenceArray shardsResponses,
ClusterState clusterState) |
protected org.elasticsearch.action.admin.indices.refresh.ShardRefreshRequest |
TransportRefreshAction.newShardRequest(int numShards,
ShardRouting shard,
RefreshRequest request) |
protected GroupShardsIterator |
TransportRefreshAction.shards(ClusterState clusterState,
RefreshRequest request,
String[] concreteIndices)
The refresh request works against *all* shards.
|
Modifier and Type | Method and Description |
---|---|
static RefreshRequest |
Requests.refreshRequest(String... indices)
Creates a refresh indices request.
|
Modifier and Type | Method and Description |
---|---|
ActionFuture<RefreshResponse> |
IndicesAdminClient.refresh(RefreshRequest request)
Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).
|
void |
IndicesAdminClient.refresh(RefreshRequest request,
ActionListener<RefreshResponse> listener)
Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).
|
Modifier and Type | Method and Description |
---|---|
ActionFuture<RefreshResponse> |
AbstractIndicesAdminClient.refresh(RefreshRequest request) |
void |
AbstractIndicesAdminClient.refresh(RefreshRequest request,
ActionListener<RefreshResponse> listener) |
Copyright © 2009–2015. All rights reserved.