You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by GitBox <gi...@apache.org> on 2018/11/08 14:15:54 UTC

[GitHub] lburgazzoli commented on issue #205: Provide example with custom procressor

lburgazzoli commented on issue #205: Provide example with custom procressor
URL: https://github.com/apache/camel-k/issues/205#issuecomment-437007792
 
 
   can you try with a lamda ? 
   
   ```
   from("timer:tick?period=10s")
               .setBody(constant("Hello"))
               .process(e -> { ... })
               .to("log:info?skipBodyLineSeparator=false");
   ```
   
   At the moment camel-k requires dependencies to be available in maven central but there's plans to support local dependencies.
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services