Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering Apache Camel

You're reading from   Mastering Apache Camel An advanced guide to Enterprise Integration using Apache Camel

Arrow left icon
Product type Paperback
Published in Jun 2015
Publisher Packt
ISBN-13 9781782173151
Length 238 pages
Edition 1st Edition
Languages
Concepts
Arrow right icon
Toc

Table of Contents (10) Chapters Close

Messaging systems EIPs

Messaging systems EIPs gather all patterns related to the delivery of messages, which are moving along in the routing logic.

Message Channel

The Message Channel EIP is the generic name for the communication between endpoints in a Camel route.

In the examples of the previous chapters, we used endpoints with the following syntax:

component:option?key=value&key=value

For instance, we can have a route as follows:

<from uri="timer:fire?period=5000"/>
<to uri="log:myLog"/>

This route uses two endpoints (timer and log). Camel implicitly creates a Message Channel between the two endpoints.

The purpose is to decouple the endpoint producing the message from the application consuming the message.

This EIP is actually used in basically all routes in an implicit way (you don't have to use a special notation to use Message Channel, it's in Camel).

Message

Another implicit EIP in Camel is the Message EIP.

This EIP is basically implemented by the...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image