Package akka.camel.javaapi
Class UntypedConsumerActor
- java.lang.Object
-
- akka.actor.UntypedActor
-
- akka.camel.javaapi.UntypedConsumerActor
-
- All Implemented Interfaces:
Actor
,CamelSupport
,Consumer
public abstract class UntypedConsumerActor extends UntypedActor implements Consumer
Java API: Returns the Camel endpoint URI to consume messages from.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface akka.actor.Actor
Actor.emptyBehavior$, Actor.ignoringBehavior$
-
-
Constructor Summary
Constructors Constructor Description UntypedConsumerActor()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected void
akka$camel$CamelSupport$_setter_$camel_$eq(Camel x$1)
protected Camel
camel()
INTERNAL API Returns aCamel
trait which provides access to the CamelExtension.java.lang.String
endpointUri()
Must return the Camel endpoint URI that the consumer wants to consume messages from.protected Activation
getActivation()
Java API: Returns theActivation
interface that can be used to wait on activation or de-activation of Camel endpoints.protected org.apache.camel.impl.DefaultCamelContext
getCamelContext()
Java API: Returns theDefaultCamelContext
abstract java.lang.String
getEndpointUri()
Java API: Returns the Camel endpoint URI to consume messages from.protected org.apache.camel.ProducerTemplate
getProducerTemplate()
Java API: Returns theProducerTemplate
-
Methods inherited from class akka.actor.UntypedActor
akka$actor$Actor$_setter_$context_$eq, akka$actor$Actor$_setter_$self_$eq, context, getContext, getSelf, getSender, onReceive, postRestart, postStop, preRestart, preStart, receive, self, supervisorStrategy, unhandled
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface akka.actor.Actor
akka$actor$Actor$_setter_$context_$eq, akka$actor$Actor$_setter_$self_$eq, aroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, context, postRestart, postStop, preRestart, receive, self, sender, supervisorStrategy, unhandled
-
Methods inherited from interface akka.camel.CamelSupport
camelContext
-
Methods inherited from interface akka.camel.Consumer
activationTimeout, autoAck, getRouteDefinitionHandler, onRouteDefinition, preStart, register, replyTimeout, super$preStart
-
-
-
-
Method Detail
-
akka$camel$CamelSupport$_setter_$camel_$eq
protected void akka$camel$CamelSupport$_setter_$camel_$eq(Camel x$1)
- Specified by:
akka$camel$CamelSupport$_setter_$camel_$eq
in interfaceCamelSupport
-
camel
protected Camel camel()
Description copied from interface:CamelSupport
INTERNAL API Returns aCamel
trait which provides access to the CamelExtension.- Specified by:
camel
in interfaceCamelSupport
- Returns:
- (undocumented)
-
endpointUri
public final java.lang.String endpointUri()
Description copied from interface:Consumer
Must return the Camel endpoint URI that the consumer wants to consume messages from.- Specified by:
endpointUri
in interfaceConsumer
- Returns:
- (undocumented)
-
getActivation
protected Activation getActivation()
Java API: Returns theActivation
interface that can be used to wait on activation or de-activation of Camel endpoints.- Returns:
- the Activation interface
-
getCamelContext
protected org.apache.camel.impl.DefaultCamelContext getCamelContext()
Java API: Returns theDefaultCamelContext
- Returns:
- the CamelContext
-
getEndpointUri
public abstract java.lang.String getEndpointUri()
Java API: Returns the Camel endpoint URI to consume messages from.- Returns:
- (undocumented)
-
getProducerTemplate
protected org.apache.camel.ProducerTemplate getProducerTemplate()
Java API: Returns theProducerTemplate
- Returns:
- the ProducerTemplate
-
-