X が false の場合は A にルーティングしたい、X が true の場合は A と B にルーティングしたい
みたいなの書いてみた
from(?)
.choice()
.when( X )
.multicast().to(A,B).end()
.otherwise() // I get a (compile) error underlined here saying 'otherwise() is not on type ProcessorDefinition
.to( A )
私はこれがこれを表現する最良の方法ではないと思う
基本的には常に(A)にルーティングしたいし、その条件があれば(B)にもルーティングしたい
これをCamelで表現する最良の方法は何ですか?