Interface ContextCustomizer

All Superinterfaces:
Comparable<ContextCustomizer>, org.apache.camel.Ordered
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ContextCustomizer extends org.apache.camel.Ordered, Comparable<ContextCustomizer>
  • Field Summary

    Fields inherited from interface org.apache.camel.Ordered

    HIGHEST, LOWEST
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply(org.apache.camel.CamelContext camelContext)
    Perform CamelContext customization.
    default int
     
    default int
     
  • Method Details

    • apply

      void apply(org.apache.camel.CamelContext camelContext)
      Perform CamelContext customization.
      Parameters:
      camelContext - the camel context to customize.
    • getOrder

      default int getOrder()
      Specified by:
      getOrder in interface org.apache.camel.Ordered
    • compareTo

      default int compareTo(ContextCustomizer o)
      Specified by:
      compareTo in interface Comparable<ContextCustomizer>