Record Class LookupFromIndexOperator.OngoingJoin
java.lang.Object
java.lang.Record
org.elasticsearch.xpack.esql.enrich.LookupFromIndexOperator.OngoingJoin
- All Implemented Interfaces:
Closeable,AutoCloseable,org.elasticsearch.core.Releasable
- Enclosing class:
LookupFromIndexOperator
protected static record LookupFromIndexOperator.OngoingJoin(RightChunkedLeftJoin join, Iterator<Page> itr)
extends Record
implements org.elasticsearch.core.Releasable
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedOngoingJoin(RightChunkedLeftJoin join, Iterator<Page> itr) Creates an instance of aOngoingJoinrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.itr()Returns the value of theitrrecord component.join()Returns the value of thejoinrecord component.voidfinal StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
OngoingJoin
Creates an instance of aOngoingJoinrecord class.- Parameters:
join- the value for thejoinrecord componentitr- the value for theitrrecord component
-
-
Method Details
-
close
public void close()- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein interfaceorg.elasticsearch.core.Releasable
-
releaseOnAnyThread
public void releaseOnAnyThread() -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
join
Returns the value of thejoinrecord component.- Returns:
- the value of the
joinrecord component
-
itr
Returns the value of theitrrecord component.- Returns:
- the value of the
itrrecord component
-