I allready have an extensive system of Camel Integration Routes. The routes are defined using camel-spring xml Route Definitions. Now I would like to replace a part of a route with an Actor System.
1.x versions of Akka provided several ways to achieve this.
Akka 2.x only offers the CamelExtension object. Extensions will only be loaded once per ActorSystem, which will be managed by Akka. This Extension initializes its own Camel context and does not offer to use an allready existing Camel-Context containing routes and Endpoints.
Is there any other possibility to integrate an 2.x Actor System into an existing Camel Route?