Package akka.camel
Interface Camel
-
- All Superinterfaces:
Activation,Extension
- All Known Implementing Classes:
DefaultCamel
public interface Camel extends Extension, Activation
Underlying camel context.It can be used to configure camel manually, i.e. when the user wants to add new routes or endpoints, i.e.
@see org.apache.camel.impl.DefaultCamelContextcamel.context.addRoutes(...)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.camel.impl.DefaultCamelContextcontext()CamelSettingssettings()The settings for the CamelExtensionActorRefsupervisor()INTERNAL API Returns the camel supervisor actor.ActorSystemsystem()INTERNAL API Returns the associated ActorSystem.org.apache.camel.ProducerTemplatetemplate()The Camel ProducerTemplate.-
Methods inherited from interface akka.camel.Activation
activationFutureFor, deactivationFutureFor
-
-
-
-
Method Detail
-
context
org.apache.camel.impl.DefaultCamelContext context()
-
settings
CamelSettings settings()
The settings for the CamelExtension- Returns:
- (undocumented)
-
supervisor
ActorRef supervisor()
INTERNAL API Returns the camel supervisor actor.- Returns:
- (undocumented)
-
system
ActorSystem system()
INTERNAL API Returns the associated ActorSystem.- Returns:
- (undocumented)
-
template
org.apache.camel.ProducerTemplate template()
The Camel ProducerTemplate.- Returns:
- (undocumented)
- See Also:
ProducerTemplate
-
-