Uses of Class
org.elasticsearch.action.count.CountRequest

Packages that use CountRequest
org.elasticsearch.action.count Count action. 
org.elasticsearch.client The client module allowing to easily perform actions/operations. 
org.elasticsearch.client.support   
org.elasticsearch.client.transport   
 

Uses of CountRequest in org.elasticsearch.action.count
 

Methods in org.elasticsearch.action.count that return CountRequest
 CountRequest CountRequest.indices(String... indices)
           
 CountRequest CountRequest.listenerThreaded(boolean threadedListener)
          Should the listener be called on a separate thread if needed.
 CountRequest CountRequest.minScore(float minScore)
          The minimum score of the documents to include in the count.
protected  CountRequest TransportCountAction.newRequest()
           
 CountRequest CountRequest.operationThreading(BroadcastOperationThreading operationThreading)
          Controls the operation threading model.
 CountRequest CountRequest.query(byte[] querySource)
          The query source to execute.
 CountRequest CountRequest.query(byte[] querySource, int offset, int length, boolean unsafe)
          The query source to execute.
 CountRequest CountRequest.query(BytesReference querySource, boolean unsafe)
           
 CountRequest CountRequest.query(Map querySource)
          The query source to execute in the form of a map.
 CountRequest CountRequest.query(QueryBuilder queryBuilder)
          The query source to execute.
 CountRequest CountRequest.query(String querySource)
          The query source to execute.
 CountRequest CountRequest.query(XContentBuilder builder)
           
 CountRequest CountRequest.queryHint(String queryHint)
          A query hint to optionally later be used when routing the request.
 CountRequest CountRequest.routing(String... routings)
          The routing values to control the shards that the search will be executed on.
 CountRequest CountRequest.routing(String routing)
          A comma separated list of routing values to control the shards the search will be executed on.
 CountRequest CountRequest.types(String... types)
          The types of documents the query will run against.
 

Methods in org.elasticsearch.action.count with parameters of type CountRequest
protected  ClusterBlockException TransportCountAction.checkGlobalBlock(ClusterState state, CountRequest request)
           
protected  ClusterBlockException TransportCountAction.checkRequestBlock(ClusterState state, CountRequest countRequest, String[] concreteIndices)
           
protected  CountResponse TransportCountAction.newResponse(CountRequest request, AtomicReferenceArray shardsResponses, ClusterState clusterState)
           
protected  org.elasticsearch.action.count.ShardCountRequest TransportCountAction.newShardRequest(ShardRouting shard, CountRequest request)
           
protected  GroupShardsIterator TransportCountAction.shards(ClusterState clusterState, CountRequest request, String[] concreteIndices)
           
 

Uses of CountRequest in org.elasticsearch.client
 

Methods in org.elasticsearch.client that return CountRequest
static CountRequest Requests.countRequest(String... indices)
          Creates a count request which counts the hits matched against a query.
 

Methods in org.elasticsearch.client with parameters of type CountRequest
 ActionFuture<CountResponse> Client.count(CountRequest request)
          A count of all the documents matching a specific query.
 void Client.count(CountRequest request, ActionListener<CountResponse> listener)
          A count of all the documents matching a specific query.
 

Uses of CountRequest in org.elasticsearch.client.support
 

Methods in org.elasticsearch.client.support with parameters of type CountRequest
 ActionFuture<CountResponse> AbstractClient.count(CountRequest request)
           
 void AbstractClient.count(CountRequest request, ActionListener<CountResponse> listener)
           
 

Uses of CountRequest in org.elasticsearch.client.transport
 

Methods in org.elasticsearch.client.transport with parameters of type CountRequest
 ActionFuture<CountResponse> TransportClient.count(CountRequest request)
           
 void TransportClient.count(CountRequest request, ActionListener<CountResponse> listener)
           
 



Copyright © 2009-2012. All Rights Reserved.