[ https://issues.apache.org/jira/browse/JAMES-2295?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16539607#comment-16539607 ]
ASF GitHub Bot commented on JAMES-2295: --------------------------------------- Github user chibenwa commented on a diff in the pull request: https://github.com/apache/james-project/pull/127#discussion_r201573288 --- Diff: server/queue/queue-activemq/src/main/java/org/apache/james/queue/activemq/ActiveMQConsumerOptions.java --- @@ -0,0 +1,110 @@ +/**************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one * + * or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information * + * regarding copyright ownership. The ASF licenses this file * + * to you under the Apache License, Version 2.0 (the * + * "License"); you may not use this file except in compliance * + * with the License. You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, * + * software distributed under the License is distributed on an * + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * + * KIND, either express or implied. See the License for the * + * specific language governing permissions and limitations * + * under the License. * + ****************************************************************/ + +package org.apache.james.queue.activemq; + +import java.util.Optional; + +import org.apache.commons.lang3.StringUtils; +import org.apache.james.queue.api.MailQueue; + +import com.google.common.base.Joiner; +import com.google.common.collect.ImmutableMap; + +/** + * The ActiveMQ specific consumer options. + * <p> + * See <a href="http://activemq.apache.org/destination-options.html">http://activemq.apache.org/destination-options.html</> + * for more details. + */ +public class ActiveMQConsumerOptions implements MailQueue.ConsumerOptions { + private final Optional<String> dequeueParams; + + private ActiveMQConsumerOptions(String dequeueParams) { + this.dequeueParams = java.util.Optional.ofNullable(dequeueParams).map(StringUtils::stripToNull); + } + + public static ActiveMQConsumerOptionsBuilder builder() { + return new ActiveMQConsumerOptionsBuilder(); + } + + @Override + public String applyForDequeue(String name) { + return dequeueParams + .map(params -> name + '?' + params) + .orElse(name); + } + + public static class ActiveMQConsumerOptionsBuilder { --- End diff -- We should also rely on a `Builder builder()` helper static method > JMS mailqueue deadlock when a single thread issue several consume > ----------------------------------------------------------------- > > Key: JAMES-2295 > URL: https://issues.apache.org/jira/browse/JAMES-2295 > Project: James Server > Issue Type: Bug > Components: Queue > Affects Versions: 3.0.0, master, 3.0.1 > Reporter: Tellier Benoit > Priority: Major > Labels: bug > > This will lead to a dead lock: > {code:java} > MailQueue.MailQueueItem mailQueueItem1 = getMailQueue().deQueue(); > MailQueue.MailQueueItem mailQueueItem2 = getMailQueue().deQueue(); > mailQueueItem1.done(true); > mailQueueItem2.done(true); > {code} -- This message was sent by Atlassian JIRA (v7.6.3#76005) --------------------------------------------------------------------- To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org For additional commands, e-mail: server-dev-h...@james.apache.org