Hi,

> 1- Does DropBox component have the notion of idempotency like file
> component?

Keep in mind that any route can be idempotent. DropBox consumer
doesn't have to be aware of the route idempotency.

from("direct:anyConsumer")
  .idempotentConsumer(header("myMessageId"),
    MemoryIdempotentRepository.memoryIdempotentRepository(200))
  .to("mock:test);

Cheers.

-- 
Henryk Konsek
http://henryk-konsek.blogspot.com

Reply via email to