Class JoinHandler<I>
- java.lang.Object
-
- uk.gov.gchq.gaffer.store.operation.handler.join.JoinHandler<I>
-
- All Implemented Interfaces:
OperationHandler<Join<I>>,OutputOperationHandler<Join<I>,Iterable<? extends uk.gov.gchq.koryphe.tuple.MapTuple>>
- Direct Known Subclasses:
FederatedJoinHandler
public class JoinHandler<I> extends Object implements OutputOperationHandler<Join<I>,Iterable<? extends uk.gov.gchq.koryphe.tuple.MapTuple>>
-
-
Constructor Summary
Constructors Constructor Description JoinHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterable<? extends uk.gov.gchq.koryphe.tuple.MapTuple>doOperation(Join<I> operation, Context context, Store store)Execute the givenOutputoperation.
-
-
-
Method Detail
-
doOperation
public Iterable<? extends uk.gov.gchq.koryphe.tuple.MapTuple> doOperation(Join<I> operation, Context context, Store store) throws OperationException
Description copied from interface:OutputOperationHandlerExecute the givenOutputoperation.- Specified by:
doOperationin interfaceOperationHandler<I>- Specified by:
doOperationin interfaceOutputOperationHandler<Join<I>,Iterable<? extends uk.gov.gchq.koryphe.tuple.MapTuple>>- Parameters:
operation- theOutputoperation to be executedcontext- the operation chain context, containing the user who executed the operationstore- theStorethe operation should be run on- Returns:
- the output for the operation.
- Throws:
OperationException- thrown if the operation fails
-
-