I hardly able to find tutorials about features of camel which are explaned so well. This is so cool feature. Thanks for sharing knowledge. Please share more about apache camel features. 👍
This component does not implement any kind of persistence or recovery if the JVM terminates while messages are yet to be processed. If you need persistence, reliability or distributed SEDA, try using JMS.
When using seda with Spring Boot make sure to use the following Maven dependency to have support for auto configuration: org.apache.camel.springboot camel-seda-starter x.x.x
Hi Saggu, thank you very much for all your lesson’s. I had question can you please help me. is it possible to pass header from one route builder to another route builder, for say, I had one route builder publishRoutebuilder sends message to queue Exchange.INONLY(eg:abcMQ) and another route builder listenerRoutebuilder listens message from another queue(eg:bcdMQ), I need one header property from publishRoutebuilder to listenerRoutebuilder.
@@harish8001 As per my knowledge that is not possible. Headers resides at exchange level, and scope of an exchange is limited to routes. Basically this hierarchy: Route -> Exchange -> Message -> Headers.
Hi Saggu, I have a question. I replace de direct:complexProcess with an activemq but the asynchronuous behavior wasn't see, could you explain me what I can change to get the same behavior? Thank you
Your Explanation much clear, many thanks for your sharing (From Indonesia)
Its hard to find good, easily understandable explanations about camel. Thanks for posting this.
Excellent explanation boss.
I hardly able to find tutorials about features of camel which are explaned so well. This is so cool feature. Thanks for sharing knowledge. Please share more about apache camel features. 👍
Good Video Saggu. Your explanation combining concepts, techniques and programming syntax is good.
very good video
how to persistent current state in seda
on reset camel enging
seda continue from last state?
This component does not implement any kind of persistence or recovery if the JVM terminates while messages are yet to be processed. If you need persistence, reliability or distributed SEDA, try using JMS.
Very well explained!
Dude thank you so much
it will be nice if u can do a workshop with Apache camel & completableFuture bean
Sir What is wieghtlifter here?
What are the dependencies used for seda?
When using seda with Spring Boot make sure to use the following Maven dependency to have support for auto configuration:
org.apache.camel.springboot
camel-seda-starter
x.x.x
Hi Saggu, thank you very much for all your lesson’s. I had question can you please help me. is it possible to pass header from one route builder to another route builder, for say, I had one route builder publishRoutebuilder sends message to queue Exchange.INONLY(eg:abcMQ) and another route builder listenerRoutebuilder listens message from another queue(eg:bcdMQ), I need one header property from publishRoutebuilder to listenerRoutebuilder.
Hi Hari, Sorry for the late response. What's the relationship between these routes? It seems from your explaination they are distinct routes.
@@SagguUK thank you very much for replying 😊, yes they are distinct routes.
@@harish8001 As per my knowledge that is not possible. Headers resides at exchange level, and scope of an exchange is limited to routes. Basically this hierarchy: Route -> Exchange -> Message -> Headers.
@@SagguUK sir I am not sure... But From one route to other routes can we send header through exchange property?
Hi Saggu, I have a question. I replace de direct:complexProcess with an activemq but the asynchronuous behavior wasn't see, could you explain me what I can change to get the same behavior? Thank you
Are you sure your seda is like this: from("seda:weightLifter?multipleConsumers=true")