
org.elasticsearch.action.search.ArraySearchPhaseResults Maven / Gradle / Ivy
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.action.search;
import org.elasticsearch.common.util.concurrent.AtomicArray;
import org.elasticsearch.search.SearchPhaseResult;
import java.util.stream.Stream;
/**
* This class acts as a basic result collection that can be extended to do on-the-fly reduction or result processing
*/
class ArraySearchPhaseResults extends SearchPhaseResults {
final AtomicArray results;
ArraySearchPhaseResults(int size) {
super(size);
this.results = new AtomicArray<>(size);
}
Stream getSuccessfulResults() {
return results.asList().stream();
}
@Override
void consumeResult(Result result, Runnable next) {
assert results.get(result.getShardIndex()) == null : "shardIndex: " + result.getShardIndex() + " is already set";
results.set(result.getShardIndex(), result);
next.run();
}
boolean hasResult(int shardIndex) {
return results.get(shardIndex) != null;
}
@Override
AtomicArray getAtomicArray() {
return results;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy