Uses of Class
com.yahoo.processing.execution.Execution
Packages that use Execution
Package
Description
Java library for request-response data processing.
-
Uses of Execution in com.yahoo.processing
Methods in com.yahoo.processing with parameters of type Execution -
Uses of Execution in com.yahoo.processing.execution
Subclasses of Execution in com.yahoo.processing.executionModifier and TypeClassDescriptionclassAn execution which has a response which is returned when this gets to the end of the chain.Methods in com.yahoo.processing.execution that return ExecutionModifier and TypeMethodDescriptionstatic ExecutionExecution.createRoot(Chain<? extends Processor> chain, int traceLevel, Execution.Environment<? extends Processor> environment) Creates an execution which is not in the context of an existing executionstatic ExecutionExecution.createRoot(Processor processor, int traceLevel, Execution.Environment<? extends Processor> environment) Creates an execution of a single processor which is not in the context of an existing executionConstructors in com.yahoo.processing.execution with parameters of type ExecutionModifierConstructorDescriptionAsyncExecution(Chain<? extends Processor> chain, Execution parent) Create an async execution of a chainAsyncExecution(Execution execution) Creates an async execution from an existing execution.AsyncExecution(Processor processor, Execution parent) Create an async execution of a single processorCreates an execution of a chainCreates an execution from another.Creates an execution of a single processorExecutionWithResponse(Chain<? extends Processor> chain, Response response, Execution execution) Creates an execution which will return a given response at the end of the chain.RunnableExecution(Request request, Execution execution) -
Uses of Execution in com.yahoo.processing.handler
Methods in com.yahoo.processing.handler that return ExecutionModifier and TypeMethodDescriptionAbstractProcessingHandler.createExecution(Chain<COMPONENT> chain, Request processingRequest) Constructors in com.yahoo.processing.handler with parameters of type Execution -
Uses of Execution in com.yahoo.processing.processors
Methods in com.yahoo.processing.processors with parameters of type Execution -
Uses of Execution in com.yahoo.processing.rendering
Methods in com.yahoo.processing.rendering that return ExecutionModifier and TypeMethodDescriptionAsynchronousSectionedRenderer.getExecution()The outermost execution which was run to create the response to render.Methods in com.yahoo.processing.rendering with parameters of type ExecutionModifier and TypeMethodDescriptionfinal CompletableFuture<Boolean>AsynchronousSectionedRenderer.renderResponse(OutputStream stream, RESPONSE response, Execution execution, Request request) Render this response using the renderer's own threads and return a future indicating whether the rendering was successful.abstract CompletableFuture<Boolean>Renderer.renderResponse(OutputStream stream, RESPONSE response, Execution execution, Request request) Render a response to a stream.final CompletableFuture<Boolean>AsynchronousSectionedRenderer.renderResponseBeforeHandover(OutputStream stream, RESPONSE response, Execution execution, Request request) Initiate rendering before handover to rendering threads. -
Uses of Execution in com.yahoo.processing.response
Constructors in com.yahoo.processing.response with parameters of type ExecutionModifierConstructorDescriptionFutureResponse(Callable<Response> callable, Execution execution, Request request)