Class Processor

  • All Implemented Interfaces:
    com.yahoo.component.Component, com.yahoo.component.Deconstructable, java.lang.Comparable<com.yahoo.component.Component>

    public abstract class Processor
    extends ChainedComponent
    Superclass of chainable components processing Requests to create Responses.

    Processors typically changes the Request and/or the Response. It may also make multiple forward requests, in series or parallel, or manufacture the response content itself or by calling an external service.

    Typical usage: public class MyProcessor extends Processor { @Override public Response process(Request request, Execution execution) { // process the request here Response response = execution.process(request); // Pass along to get the Response // process (or fill in) Data/DataList items on the response here return response; } }

    Author:
    bratseth
    • Constructor Detail

      • Processor

        public Processor()
    • Method Detail

      • process

        public abstract Response process​(Request request,
                                         Execution execution)
        Performs a processing request and returns the response
        Returns:
        a Response instance - never null - containing the data produced by this processor and those it forwards the request to