Class AggregateHandler
- java.lang.Object
-
- uk.gov.gchq.gaffer.store.operation.handler.function.AggregateHandler
-
- All Implemented Interfaces:
OperationHandler<Aggregate>
,OperationWithSchemaHandler<Aggregate,Iterable<? extends Element>>
,OutputOperationHandler<Aggregate,Iterable<? extends Element>>
public class AggregateHandler extends Object implements OutputOperationHandler<Aggregate,Iterable<? extends Element>>, OperationWithSchemaHandler<Aggregate,Iterable<? extends Element>>
-
-
Constructor Summary
Constructors Constructor Description AggregateHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterable<? extends Element>
doOperation(Aggregate operation, Context context, Store store)
Execute the givenOutput
operation.Iterable<? extends Element>
doOperation(Aggregate operation, Schema schema)
-
-
-
Method Detail
-
doOperation
public Iterable<? extends Element> doOperation(Aggregate operation, Context context, Store store) throws OperationException
Description copied from interface:OutputOperationHandler
Execute the givenOutput
operation.- Specified by:
doOperation
in interfaceOperationHandler<Aggregate>
- Specified by:
doOperation
in interfaceOutputOperationHandler<Aggregate,Iterable<? extends Element>>
- Parameters:
operation
- theOutput
operation to be executedcontext
- the operation chain context, containing the user who executed the operationstore
- theStore
the operation should be run on- Returns:
- the output for the operation.
- Throws:
OperationException
- thrown if the operation fails
-
doOperation
public Iterable<? extends Element> doOperation(Aggregate operation, Schema schema) throws OperationException
- Specified by:
doOperation
in interfaceOperationWithSchemaHandler<Aggregate,Iterable<? extends Element>>
- Throws:
OperationException
-
-