GitHub user yuruki opened a pull request: https://github.com/apache/camel/pull/459
CAMEL-7833 Use Camel endpoints inside RX sequence CamelOperator class allows us to use Camel endpoints inside an RX sequence, like so: ``` Observable<Message> in = reactiveCamel.toObservable("direct:start") .lift(new CamelOperator(camelContext, "xslt:something.xsl")) .lift(new CamelOperator(anotherEndpoint)); ``` You can merge this pull request into a Git repository by running: $ git pull https://github.com/yuruki/camel camel-rx Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/459.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #459 ---- commit 414e968fb26cfb5f707f2e7024ff423dcdac9af9 Author: Jyrki Ruuskanen <yur...@kotikone.fi> Date: 2015-04-01T14:54:26Z Added CamelOperator for lift() commit 5384bc26859c1af73610ce3d74a3f014620a19b7 Author: Jyrki Ruuskanen <yur...@kotikone.fi> Date: 2015-04-01T15:34:47Z Added CamelOperatorTest ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---