New component: Multi-threading with Scala actors
------------------------------------------------
Key: CAMEL-752
URL: https://issues.apache.org/activemq/browse/CAMEL-752
Project: Apache Camel
Issue Type: New Feature
Components: camel-scala
Affects Versions: 1.4.0
Reporter: Gert Vanthienen
Assignee: Gert Vanthienen
Fix For: 1.5.0
Actors in Scala are concurrent processes that communicate by exchanging
messages. We should add a component that allows people to use Scala actors for
implementing concurrent execution in Camel, even from within the Java/Spring
DSLs.
{code:java}
from("direct:a").to("actor:pong");
from("actor:pong").process(...);
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.