Package org.apache.camel.spring.boot
Interface CamelContextConfiguration
-
public interface CamelContextConfigurationCallback that allows custom logic during starting upCamelContextand just afterCamelContexthas been fully started.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterApplicationStart(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 Detail
-
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.
-
-