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 givenOutput
operation.
-
-
-
Method Detail
-
doOperation
public List<T> doOperation(GenerateSplitPointsFromSample<T> operation, Context context, Store store) throws OperationException
Description copied from interface:OutputOperationHandler
Execute the givenOutput
operation.- Specified by:
doOperation
in interfaceOperationHandler<T>
- Specified by:
doOperation
in interfaceOutputOperationHandler<T,S extends Store>
- 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
-
-