Class ProcessorLibrary.Federator

  • All Implemented Interfaces:
    com.yahoo.component.Component, com.yahoo.component.Deconstructable, Comparable<com.yahoo.component.Component>
    Enclosing class:
    ProcessorLibrary

    public static class ProcessorLibrary.Federator
    extends Processor
    • Constructor Detail

      • Federator

        @SafeVarargs
        public Federator​(Chain<? extends Processor>... chains)
        Federates over the given chains. Returns an ordered response.
      • Federator

        @SafeVarargs
        public Federator​(boolean ordered,
                         Chain<? extends Processor>... chains)
        Federates over the given chains
        Parameters:
        ordered - true if the returned list should be ordered (default), false if it should be permissible to render the datalist from each federated source in the order it completes.
    • Method Detail

      • process

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