Skip to content

Commit bb91d4f

Browse files
committed
javadoc
1 parent 62a90bf commit bb91d4f

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

  • server/src/main/java/org/elasticsearch/common/util
  • x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/blockhash

server/src/main/java/org/elasticsearch/common/util/BigArrays.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,7 @@ public BytesRefRecycler bytesRefRecycler() {
595595
return bytesRefRecycler;
596596
}
597597

598+
/** Returns the page cache recycler, may be null */
598599
public PageCacheRecycler recycler() {
599600
return recycler;
600601
}

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/blockhash/HashImplFactory.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,14 @@
1515
import org.elasticsearch.compute.data.BlockFactory;
1616
import org.elasticsearch.swisshash.SwissHashFactory;
1717

18-
/** A factory for constructing concrete Hash implementations. */
18+
/**
19+
* A factory for constructing concrete Hash implementations.
20+
*
21+
* <p> The specific implementation returned by this factory is chosen once at
22+
* class initialization time and remains fixed for the lifetime of the JVM. All
23+
* factory methods will therefore consistently return instances of the same
24+
* concrete implementation type.
25+
*/
1926
public class HashImplFactory {
2027

2128
public static final FeatureFlag SWISS_TABLES_HASHING = new FeatureFlag("swiss_table_hashing");

0 commit comments

Comments
 (0)