Interface CamelContextConfiguration


public interface CamelContextConfiguration
Callback that allows custom logic during starting up CamelContext and just after CamelContext has been fully started.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    afterApplicationStart(org.apache.camel.CamelContext camelContext)
    Called after Spring Boot and CamelContext has just been started up.
    void
    beforeApplicationStart(org.apache.camel.CamelContext camelContext)
    Called during Spring Boot is starting up and is starting up CamelContext.
  • Method Details

    • beforeApplicationStart

      void beforeApplicationStart(org.apache.camel.CamelContext camelContext)
      Called during Spring Boot is starting up and is starting up CamelContext.
    • afterApplicationStart

      void afterApplicationStart(org.apache.camel.CamelContext camelContext)
      Called after Spring Boot and CamelContext has just been started up. This means there Camel routes may already be active and have started processing incoming messages.