Hi, i want to compare time of a specific process. so after google search i
found the link
http://cmoulliard.blogspot.com/2011/02/measure-elapsed-time-with-camel.html
<http://cmoulliard.blogspot.com/2011/02/measure-elapsed-time-with-camel.html>
but i need more specific which @Gregor mention in comment :
(MyRouteBuilder.java)
DateTime time;
from("direct:foo")
.routeIde("foo")
.stopWatch("fooTimer").start(time)
.process(...)
.stopWatch("fooTimer").stop()
.log("took " + time.getTime() + "s")
.end();
is it possible?
--
View this message in context:
http://camel.465427.n5.nabble.com/Measure-elapsed-time-of-specific-process-tp5735915.html
Sent from the Camel - Users mailing list archive at Nabble.com.