public class LinkedBlockingQueueFactory extends AbstractBlockingQueueFactory
BlockingQueueFactory
interface that creates
instances of LinkedBlockingQueue
.Modifier and Type | Field and Description |
---|---|
static BlockingQueueFactory |
INSTANCE
The singleton instance.
|
Constructor and Description |
---|
LinkedBlockingQueueFactory() |
Modifier and Type | Method and Description |
---|---|
<E> BlockingQueue<E> |
create()
This method creates a new
Collection instance. |
<E> BlockingQueue<E> |
create(int capacity)
This method creates a new
Collection instance with the given initial capacity . |
Class<LinkedBlockingQueue> |
getCollectionImplementation()
This method gets the implementation of the
collection-interface used by this
factory. |
createGeneric, createGeneric, getCollectionInterface
public static final BlockingQueueFactory INSTANCE
public Class<LinkedBlockingQueue> getCollectionImplementation()
CollectionFactory
collection-interface
used by this
factory.Collection
implementation.public <E> BlockingQueue<E> create()
CollectionFactory
Collection
instance. Collection
can NOT be bound to the generic type <COLLECTION> because of limitations in Java's
generic type system. You need to work on the actual sub-interface (e.g. ListFactory
) to get the proper
result type.E
- the type of elements contained in the collection.CollectionFactory.createGeneric()
public <E> BlockingQueue<E> create(int capacity)
CollectionFactory
Collection
instance with the given initial capacity
. Collection
can NOT be bound to the generic type <COLLECTION> because of limitations in Java's
generic type system. You need to work on the actual sub-interface (e.g. ListFactory
) to get the proper
result type.E
- the type of elements contained in the collection.capacity
- is the initial capacity of the collection.CollectionFactory.createGeneric(int)
Copyright © 2001–2016 mmm-Team. All rights reserved.