[ https://issues.apache.org/jira/browse/CAMEL-4397?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Ben O'Day updated CAMEL-4397: ----------------------------- Description: add support for Hazelcast distributed locking/unlocking APIs in a route...see http://www.hazelcast.com/documentation.jsp#Lock something like this... {code} 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}")); {code} was: add support for Hazelcast distributed locking/unlocking APIs in a route...see http://www.hazelcast.com/documentation.jsp#Lock something like this... {code} 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}")); {code} > 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... > {code} > 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}")); > {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira