return this;
}
public QueryStatus deattachThread(String shardName) {
_completeShards.incrementAndGet();
CpuTime cpuTime = _cpuTimes.get(shardName);
if (CPU_TIME_SUPPORTED) {
cpuTime.cpuTime = _bean.getCurrentThreadCpuTime() - cpuTime.cpuTime;
}
cpuTime.realTime = System.nanoTime() - cpuTime.realTime;
return this;