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

Messages

Messages transport the data between the different parts of the mediation logic. Your mediation logic will define the flow of messages between different nodes.

A message flows in one direction, from a sender to a receiver. It's not possible to use the same message to answer the sender, we will have to use another message. A message is described in the org.apache.camel.Message interface.

The javadoc is available at http://camel.apache.org/maven/camel-2.13.0/camel-core/apidocs/org/apache/camel/Message.html.

A message contains the following:

  • ID: A message ID of type String. Camel creates an ID for you. This ID identifies the message and can be used for correlation or storage. For instance, we will see that the message ID is used in the idempotent consumer pattern to identify the message in a store.
  • Header: A set of headers, allowing you to store any kind of data associated with a message. The headers are stored as org.apache.camel.util.CaseInsensitiveMap by default. The CaseInsensitiveMap...
You have been reading a chapter from
Mastering Apache Camel
Published in: Jun 2015
Publisher: Packt
ISBN-13: 9781782173151
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