add route support for Hazelcast distributed locking/unlocking
-------------------------------------------------------------

                 Key: CAMEL-4397
                 URL: https://issues.apache.org/jira/browse/CAMEL-4397
             Project: Camel
          Issue Type: Improvement
          Components: camel-hazelcast
            Reporter: Ben O'Day
            Assignee: Ben O'Day
            Priority: Minor
             Fix For: 2.9.0


add support for Hazelcast distributed locking/unlocking APIs in a route...see 
http://www.hazelcast.com/documentation.jsp#Lock

something like this...

from("direct:processLocked")
  .doTry()
    .toF("hazelcast:%s%s", HazelcastConstants.LOCK_PREFIX, 
simple("${header.id}"))
    .bean(MyProcess.class);
  .doFinally()
    .toF("hazelcast:%s%s", HazelcastConstants.UNLOCK_PREFIX, 
simple("${header.id}"))
    .to("hazelcast:unlock");


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to