Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Mastering Apache Camel

You're reading from  Mastering Apache Camel

Product type Book
Published in Jun 2015
Publisher Packt
ISBN-13 9781782173151
Pages 238 pages
Edition 1st Edition
Languages
Concepts
Authors (3):
Bilgin Ismet Ibryam Bilgin Ismet Ibryam
Profile icon Bilgin Ismet Ibryam
Jean Baptiste Onofre Jean Baptiste Onofre
Profile icon Jean Baptiste Onofre
Jean-Baptiste Onofré Jean-Baptiste Onofré
Profile icon Jean-Baptiste Onofré
View More author details

Message Construction EIPs


These EIPs are responsible for creating messages in response to other messages.

The Event Message EIP

The Event Message EIP describes how to use messaging to transmit events from one application to another.

Camel supports this EIP by the use of the Message Exchange Pattern in the exchange. When defined as InOnly, it means that we deal with a one way event message.

So, basically, the Event Message EIP means one directional messages.

The first endpoint of the route defines the expected Exchange pattern, but, at any point in the route, you can force the Exchange pattern to InOnly to make it act as an Event Message EIP.

For this, you have to use the inOnly notation:

<route>
   <from uri="direct:start"/>
   <inOnly uri="bean:myBean"/>
</route>

You can also use the setExchangePattern notation:

<route>
   <from uri="direct:start"/>
   <setExchangePattern pattern="InOnly"/>
   <to uri="bean:myBean"/>
</route>

It's also possible...

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 $15.99/month. Cancel anytime}