Package org.apache.camel.spring.boot
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 TypeMethodDescriptionvoidafterApplicationStart(org.apache.camel.CamelContext camelContext) Called after Spring Boot andCamelContexthas just been started up.voidbeforeApplicationStart(org.apache.camel.CamelContext camelContext) Called during Spring Boot is starting up and is starting upCamelContext.
-
Method Details
-
beforeApplicationStart
void beforeApplicationStart(org.apache.camel.CamelContext camelContext) Called during Spring Boot is starting up and is starting upCamelContext. -
afterApplicationStart
void afterApplicationStart(org.apache.camel.CamelContext camelContext) Called after Spring Boot andCamelContexthas just been started up. This means there Camel routes may already be active and have started processing incoming messages.
-