December 2013
Intermediate to advanced
424 pages
9h 7m
English
When you want to process the current message in the background (concurrently) to the main route, without requiring a response, the Wire Tap EIP can help. A typical use case for this is logging the message to a backend system. The main thread of execution will continue to process the message through the current route as usual, while Wire Tap allows additional messaging processing to occur outside of the main route.

This recipe will show you how to send a copy of the message to a different endpoint.
The Java code for this recipe is located in the org.camelcookbook.routing.wiretap package. ...
Read now
Unlock full access