Intercept has been edited by Claus Ibsen (Apr 27, 2009).

(View changes)

Content:

Intercept

The intercept feature in Camel supports intercepting Exchanges while they are on route.

Camel supports two kinds of interceptors

  • intercept
  • interceptEndpoint new in Camel 2.0 that intercepts when an Exchange is about to be sent to the given Endpoint

Intercept

Lets start with the logging example. We want to log all the incoming requests so we use intercept to route to the Log component. As proceed is default then the Exchange will continue its route, and thus it will continue to mock:first.

// intercept all incomming routes and log it
intercept().to("log:received");

// and here we have a couple of routes
from("direct:start").to("mock:first").to("seda:bar");

from("seda:bar").to("mock:result");

InterceptEndpoint

Available as of Camel 2.0

Intercept endpoint is triggered when an Exchange is being sent to the intercepted endpoint. This allows you to route the Exchange to a Detour or do some custom processing before the Exchange is sent to the original intended destination. You can also skip sending to the intended destination. By default Camel will send to the original intended destination after the intercepted route completes. And as the regular intercept you can also define an when Predicate so we only intercept if the Predicate evaluates to true. This allows you do do a bit of filtering, to only intercept when certain criteria is meet.

Let start with a simple example, where we want to intercept when an Exchange is being sent to mock:foo:

// we intercept by endpoint, that means that whenever an exchange is about to be sent to
// this endpoint, its intercepted and routed with this detour route beforehand
// afterwards its send to the original intended destination. So this is kinda AOP before.
// That means mock:foo will receive the message (Bye World).
interceptEndpoint("mock:foo").to("mock:detour").transform(constant("Bye World"));

from("direct:first")
    .to("mock:bar")
    .to("mock:foo")
    .to("mock:result");

And this time we add the Predicate so its only when the message body is Hello World we intercept.

// we can also attach a predicate to the endpoint interceptor. So in this example the exchange is
// only intercepted if the body is Hello World
interceptEndpoint("mock:foo").when(body().isEqualTo("Hello World")).to("mock:detour").transform(constant("Bye World"));

from("direct:second")
    .to("mock:bar")
    .to("mock:foo")
    .to("mock:result");

And to skip sending to the mock:foo endpoint we use the stop() DSL in the route at the end to instruct Camel to skip sending. The name *stop() is used as the interceptEndpoint builds on top of intercept and thus we inherit the DSL keywords.

// since we use the stop() at the end of the detour route we instruct Camel to skip
// sending the exchange to the original intended destination.
// That means that mock:foo will NOT receive the message, but the message
// is skipped and continued in the original route, so mock:result will receive
// the message.
interceptEndpoint("mock:foo").transform(constant("Bye World")).to("mock:detour").stop();

from("direct:third")
    .to("mock:bar")
    .to("mock:foo")
    .to("mock:result");

Reply via email to