Interface WrappingProcessor

All Superinterfaces:
Processor
All Known Implementing Classes:
ConditionalProcessor, OnFailureProcessor

public interface WrappingProcessor extends Processor
A wrapping processor is one that encapsulates an inner processor, or a processor that the wrapped processor acts upon. All processors that contain an "inner" processor should implement this interface, such that the actual processor can be obtained.
  • Method Details

    • getInnerProcessor

      Processor getInnerProcessor()
      Method for retrieving the inner processor from a wrapped processor.
      Returns:
      the inner processor
    • isAsync

      default boolean isAsync()
      Specified by:
      isAsync in interface Processor