akka.camel

UntypedConsumerActor

class UntypedConsumerActor extends UntypedActor with UntypedConsumer

Subclass this abstract class to create an MDB-style untyped consumer actor. This class is meant to be used from Java.

Attributes
abstract
Linear Supertypes
UntypedConsumer, Consumer, UntypedActor, Actor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. UntypedConsumerActor
  2. UntypedConsumer
  3. Consumer
  4. UntypedActor
  5. Actor
  6. AnyRef
  7. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new UntypedConsumerActor ()

Type Members

  1. type Receive = PartialFunction[Any, Unit]

    Definition Classes
    Actor

Abstract Value Members

  1. def getEndpointUri (): String

    Returns the Camel endpoint URI to consume messages from.

    Returns the Camel endpoint URI to consume messages from.

    Attributes
    abstract
    Definition Classes
    UntypedConsumer
  2. def onReceive (message: Any): Unit

    Attributes
    abstract
    Definition Classes
    UntypedActor
    Annotations
    @throws()

Concrete Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def autoack : Boolean

    Determines whether one-way communications between an endpoint and this consumer actor should be auto-acknowledged or application-acknowledged.

    Determines whether one-way communications between an endpoint and this consumer actor should be auto-acknowledged or application-acknowledged.

    Attributes
    final
    Definition Classes
    UntypedConsumerConsumer
  8. def become (behavior: Procedure[Any], discardOld: Boolean): Unit

    Definition Classes
    UntypedActor
  9. def become (behavior: Procedure[Any]): Unit

    Definition Classes
    UntypedActor
  10. def become (behavior: Receive, discardOld: Boolean): Unit

    Definition Classes
    Actor
  11. def blocking : Boolean

    Determines whether two-way communications between an endpoint and this consumer actor should be done in blocking or non-blocking mode (default is non-blocking).

    Determines whether two-way communications between an endpoint and this consumer actor should be done in blocking or non-blocking mode (default is non-blocking). This method doesn't have any effect on one-way communications (they'll never block).

    Attributes
    final
    Definition Classes
    UntypedConsumerConsumer
  12. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def context (): ActorRef

    Definition Classes
    UntypedActor
  14. def endpointUri : String

    Returns the Camel endpoint URI to consume messages from.

    Returns the Camel endpoint URI to consume messages from.

    Attributes
    final
    Definition Classes
    UntypedConsumerConsumer
  15. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  16. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  17. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  18. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  19. def getContext (): ActorRef

    Definition Classes
    UntypedActor
  20. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  21. def isAutoack (): Boolean

    Determines whether one-way communications between an endpoint and this consumer actor should be auto-acknowledged or application-acknowledged.

    Determines whether one-way communications between an endpoint and this consumer actor should be auto-acknowledged or application-acknowledged.

    Definition Classes
    UntypedConsumer
  22. def isBlocking (): Boolean

    Determines whether two-way communications between an endpoint and this consumer actor should be done in blocking or non-blocking mode (default is non-blocking).

    Determines whether two-way communications between an endpoint and this consumer actor should be done in blocking or non-blocking mode (default is non-blocking). This method doesn't have any effect on one-way communications (they'll never block).

    Definition Classes
    UntypedConsumer
  23. def isDefinedAt (message: Any): Boolean

    Definition Classes
    Actor
  24. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  25. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  26. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  27. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  28. def onRouteDefinition (h: RouteDefinitionHandler): Unit

    Sets the route definition handler for creating a custom route to this consumer instance.

    Sets the route definition handler for creating a custom route to this consumer instance.

    Java API.

    Definition Classes
    Consumer
  29. def onRouteDefinition (h: (RouteDefinition) ⇒ org.apache.camel.model.ProcessorDefinition[_]): Unit

    Sets the route definition handler for creating a custom route to this consumer instance.

    Sets the route definition handler for creating a custom route to this consumer instance.

    Definition Classes
    Consumer
  30. implicit def optionSelf : Option[ActorRef]

    Attributes
    implicit
    Definition Classes
    Actor
  31. def postRestart (reason: Throwable): Unit

    Definition Classes
    UntypedActor → Actor
  32. def postStop (): Unit

    Definition Classes
    UntypedActor → Actor
  33. def preRestart (reason: Throwable): Unit

    Definition Classes
    UntypedActor → Actor
  34. def preStart (): Unit

    Definition Classes
    UntypedActor → Actor
  35. def receive : PartialFunction[Any, Unit]

    Attributes
    protected final
    Definition Classes
    UntypedActor → Actor
  36. val self : ScalaActorRef

    Definition Classes
    Actor
  37. implicit val someSelf : Some[ActorRef]

    Attributes
    implicit
    Definition Classes
    Actor
  38. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  39. def toString (): String

    Definition Classes
    AnyRef → Any
  40. def unbecome (): Unit

    Definition Classes
    Actor
  41. def unhandled (msg: Any): Unit

    Definition Classes
    UntypedActor → Actor
  42. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  43. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  44. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from UntypedConsumer

Inherited from Consumer

Inherited from UntypedActor

Inherited from Actor

Inherited from AnyRef

Inherited from Any