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