multicastplanned
multicast(destinations: Array<RouteBuilder<any>>): RouteBuilder<Current>
Send the same exchange to multiple destinations simultaneously. Each destination receives a copy of the exchange.
.multicast([
craft().to(database),
craft().to(auditLog),
craft().transform(formatForAnalytics).to(analyticsService)
])