Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.14.0
-
None
-
Unknown
Description
The autoStartup method is missing from the Scala DSL.
MyRoute.scala
import org.apache.camel.scala.dsl.builder.RouteBuilder class MyRoute extends RouteBuilder { "direct:start" ==> { autoStartup(false) // this is not available autoStartup("{{some.route.auto.startup}}") // this is not available noAutoStartup() // this is not available to("mock:end") } }
This should be added to the Scala DSL.