map.replace(key,newValue,ttl).thenAccept(result -> processResult(message,callback,result)); | map.replace(key,newValue,Duration.ofMillis(ttl)).thenAccept(result -> processResult(message,callback,result)); | ttl | Duration.ofMillis(ttl) | camel | 3756fba22402ad81caf59f7c25859e5a95737e65 | org.apache.camel.component.atomix.client.map.AtomixClientMapProducer | | | | | | Uses | True |
map.replace(key,oldValue,newValue,ttl).thenAccept(result -> processResult(message,callback,result)); | map.replace(key,oldValue,newValue,Duration.ofMillis(ttl)).thenAccept(result -> processResult(message,callback,result)); | ttl | Duration.ofMillis(ttl) | camel | 3756fba22402ad81caf59f7c25859e5a95737e65 | org.apache.camel.component.atomix.client.map.AtomixClientMapProducer | | | | | | Uses | True |
map.putIfAbsent(key,message.getMandatoryBody(),ttl).thenAccept(result -> processResult(message,callback,result)); | map.putIfAbsent(key,val,Duration.ofMillis(ttl)).thenAccept(result -> processResult(message,callback,result)); | ttl | Duration.ofMillis(ttl) | camel | 3756fba22402ad81caf59f7c25859e5a95737e65 | org.apache.camel.component.atomix.client.map.AtomixClientMapProducer | | | | | | Uses | True |
map.put(key,message.getMandatoryBody(),ttl).thenAccept(result -> processResult(message,callback,result)); | map.put(key,val,Duration.ofMillis(ttl)).thenAccept(result -> processResult(message,callback,result)); | ttl | Duration.ofMillis(ttl) | camel | 3756fba22402ad81caf59f7c25859e5a95737e65 | org.apache.camel.component.atomix.client.map.AtomixClientMapProducer | | | | | | Uses | True |