Package io.trino.operator.join
Class LookupJoinOperator
- java.lang.Object
-
- io.trino.operator.join.LookupJoinOperator
-
- All Implemented Interfaces:
WorkProcessorOperator,WorkProcessorOperatorAdapter.AdapterWorkProcessorOperator,AutoCloseable
public class LookupJoinOperator extends Object implements WorkProcessorOperatorAdapter.AdapterWorkProcessorOperator
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddInput(Page page)voidclose()voidfinish()Optional<OperatorInfo>getOperatorInfo()ReturnsOperatorInfo.WorkProcessor<Page>getOutputPages()booleanneedsInput()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.trino.operator.WorkProcessorOperator
getMetrics
-
-
-
-
Method Detail
-
getOperatorInfo
public Optional<OperatorInfo> getOperatorInfo()
Description copied from interface:WorkProcessorOperatorReturnsOperatorInfo. This method must be thread safe. This method might be called after operator is closed to obtain finalOperatorInfo.- Specified by:
getOperatorInfoin interfaceWorkProcessorOperator
-
needsInput
public boolean needsInput()
- Specified by:
needsInputin interfaceWorkProcessorOperatorAdapter.AdapterWorkProcessorOperator
-
addInput
public void addInput(Page page)
- Specified by:
addInputin interfaceWorkProcessorOperatorAdapter.AdapterWorkProcessorOperator
-
finish
public void finish()
- Specified by:
finishin interfaceWorkProcessorOperatorAdapter.AdapterWorkProcessorOperator
-
getOutputPages
public WorkProcessor<Page> getOutputPages()
- Specified by:
getOutputPagesin interfaceWorkProcessorOperator
-
close
public void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceWorkProcessorOperator
-
-