MuleESB / Apache Camel Interview Questions
How does the Recipient List EIP work in Camel?
The Recipient List dynamically determines the list of endpoints to send a message to at runtime, based on a header or expression. Unlike Multicast (which uses a static list), the destinations are computed from the message itself. This is useful for subscription-based routing, workflow dispatch tables, and tenant-aware fan-out.
// Recipients read from a header (comma-separated URIs):
from("direct:start")
.recipientList(header("destinations"));
// Dynamic list built using Simple:
from("direct:notify")
.recipientList(simple("jms:queue:${header.tenantId}-alerts,http://audit.service/log"))
.parallelProcessing();
// Stop on first exception from any recipient:
from("direct:send")
.recipientList(header("targets")).stopOnException();The recipients are resolved per-message. Multiple recipients can be processed in parallel with .parallelProcessing(). Responses from each recipient are discarded by default; use an AggregationStrategy to merge them. The delimiter defaults to comma but can be changed with .delimiter(string).
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
