Packages

t

akka.camel

Camel

trait Camel extends Extension with Activation

Camel trait encapsulates the underlying camel machinery. Note: CamelContext and ProducerTemplate are stopped when the associated actor system is shut down. This trait can be obtained through the akka.camel.CamelExtension object.

Source
Camel.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Camel
  2. Activation
  3. Extension
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def activationFutureFor(endpoint: ActorRef)(implicit timeout: Timeout, executor: ExecutionContext): Future[ActorRef]

    Produces a Future with the specified endpoint that will be completed when the endpoint has been activated, or if it times out, which will happen after the specified Timeout.

    Produces a Future with the specified endpoint that will be completed when the endpoint has been activated, or if it times out, which will happen after the specified Timeout.

    endpoint

    the endpoint to be activated

    timeout

    the timeout for the Future

    Definition Classes
    Activation
  2. abstract def context: DefaultCamelContext

    Underlying camel context.

    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.

    camel.context.addRoutes(...)
    See also

    org.apache.camel.impl.DefaultCamelContext

  3. abstract def deactivationFutureFor(endpoint: ActorRef)(implicit timeout: Timeout, executor: ExecutionContext): Future[ActorRef]

    Produces a Future which will be completed when the given endpoint has been deactivated or or if it times out, which will happen after the specified Timeout.

    Produces a Future which will be completed when the given endpoint has been deactivated or or if it times out, which will happen after the specified Timeout.

    endpoint

    the endpoint to be deactivated

    timeout

    the timeout of the Future

    Definition Classes
    Activation
  4. abstract def settings: CamelSettings

    The settings for the CamelExtension

  5. abstract def template: ProducerTemplate

    The Camel ProducerTemplate.

    The Camel ProducerTemplate.

    See also

    org.apache.camel.ProducerTemplate