| RoundRobinPolicyNewQueryPlan Method | 
             Returns the hosts to use for a new query. 
 The returned plan will try each
             known host of the cluster. Upon each call to this method, the ith host of the
             plans returned will cycle over all the host of the cluster in a round-robin
             fashion.
 
Namespace: DseAssembly: Dse (in Dse.dll) Version: 2.4.0
 Syntax
Syntaxpublic IEnumerable<Host> NewQueryPlan(
	string keyspace,
	IStatement query
)
Parameters
- keyspace
- Type: SystemString
 Keyspace on which the query is going to be executed
- query
- Type: DseIStatement
 the query for which to build the plan.
Return Value
Type: 
IEnumerableHosta new query plan, i.e. an iterator indicating which host to try
             first for querying, which one to use as failover, etc...
Implements
ILoadBalancingPolicyNewQueryPlan(String, IStatement) See Also
See Also