Class AbstractGenerateSplitPointsFromSampleHandler<T,S extends Store>
- java.lang.Object
-
- uk.gov.gchq.gaffer.store.operation.handler.AbstractGenerateSplitPointsFromSampleHandler<T,S>
-
- All Implemented Interfaces:
OperationHandler<GenerateSplitPointsFromSample<T>>,OutputOperationHandler<GenerateSplitPointsFromSample<T>,List<T>>
- Direct Known Subclasses:
GenerateSplitPointsFromSampleHandler
public abstract class AbstractGenerateSplitPointsFromSampleHandler<T,S extends Store> extends Object implements OutputOperationHandler<GenerateSplitPointsFromSample<T>,List<T>>
-
-
Constructor Summary
Constructors Constructor Description AbstractGenerateSplitPointsFromSampleHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<T>doOperation(GenerateSplitPointsFromSample<T> operation, Context context, Store store)Execute the givenOutputoperation.
-
-
-
Method Detail
-
doOperation
public List<T> doOperation(GenerateSplitPointsFromSample<T> operation, Context context, Store store) throws OperationException
Description copied from interface:OutputOperationHandlerExecute the givenOutputoperation.- Specified by:
doOperationin interfaceOperationHandler<T>- Specified by:
doOperationin interfaceOutputOperationHandler<T,S extends Store>- 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
-
-