Package org.apache.camel.spring.boot
Interface CamelContextConfiguration
-
public interface CamelContextConfiguration
Callback that allows custom logic during starting upCamelContext
and just afterCamelContext
has been fully started.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterApplicationStart(org.apache.camel.CamelContext camelContext)
Called after Spring Boot andCamelContext
has just been started up.void
beforeApplicationStart(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 andCamelContext
has just been started up. This means there Camel routes may already be active and have started processing incoming messages.
-
-