[ https://issues.apache.org/jira/browse/JAMES-2295?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16547854#comment-16547854 ]
ASF GitHub Bot commented on JAMES-2295: --------------------------------------- Github user nstdio commented on a diff in the pull request: https://github.com/apache/james-project/pull/127#discussion_r203382904 --- Diff: server/queue/queue-jms/src/main/java/org/apache/james/queue/jms/ConsumerOptions.java --- @@ -0,0 +1,42 @@ +/**************************************************************** + * 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.jms; + +import org.apache.james.queue.api.MailQueue; + +/** + * Provides additional options when creating consumers. + */ +public interface ConsumerOptions { + /** + * The empty consumer options. + */ + static ConsumerOptions empty() { + return queueName -> queueName; + } + + /** + * The queue name with options for performing {@link MailQueue#deQueue()} operation. The implementation may + * return {@code queueName} itself if it does not support any options. + * + * @return The queue name maybe with additional options. + */ + String applyForDequeue(String queueName); --- End diff -- Our issue basically is related to `JMSMailQueue` from with we have reference on `ConsumerOptions` and not `ActiveMQConsumerOptions`. Although we can do `instanceof ActiveMQConsumerOptions` and then call `applyForDequeue`. That `instanceof` check will be a bit ugly in my opinion. > 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