Hi Friends,

I am new to Akka group. I have a little bit knowledge on Apache Camel. I am 
having a simple job to transfer the files between 2 folders. It's a already 
completed alone on Apache camel. 

  public static void main(String args[]) throws Exception {
        // create CamelContext
        CamelContext context = new DefaultCamelContext();
        

        // add our route to the CamelContext
        context.addRoutes(new RouteBuilder() {
            public void configure() {
                from("file:source?noop=true").to("file:destination");
            }
        });

        // start the route and let it do its work
        context.start();
        Thread.sleep(10000);

        // stop the CamelContext
        context.stop();
    }

I would like to migrate to Akka camel integration.

 I am working on Java 6 and so preferred Akka 2.3.15 version. When i am 
learning Akka with Camel, it's always use the method getEndpointUri(). 
Could you please help me with respect to my requirement?

Thanks in advance.

Ganesh.S

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to akka-user+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to