summaryrefslogtreecommitdiff
path: root/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/SortedQueueEntryListFactory.java
blob: 7a70795e770c22940eeeaa847036d3aa289660f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.apache.qpid.server.queue;

public class SortedQueueEntryListFactory implements QueueEntryListFactory
{

    private final String _propertyName;

    public SortedQueueEntryListFactory(final String propertyName)
    {
        _propertyName = propertyName;
    }

    @Override
    public QueueEntryList<SortedQueueEntryImpl> createQueueEntryList(final AMQQueue queue)
    {
        return new SortedQueueEntryList(queue, _propertyName);
    }

}