Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added Java/Spring XML Examples

...

The Event Driven Consumer is implemented by consumers implementing the Processor interface which is invoked by the Message Endpoint when a Message is available for processing.

Example

The following demonstrates a Processor defined in the Camel  Registry which is invoked when an event occurs from a JMS queue


Using the Fluent Builders

Code Block
languagejava
from("jms:queue:foo")
	.processRef("processor");

 

Using the Spring XML Extensions

Code Block
languagexml
<route>
	<from uri="jms:queue:foo"/>
	<to uri="processor"/>
</route>

 

For more details see

Include Page
Using This Pattern
Using This Pattern