Package ch.qos.logback.core.net
Class QueueFactory
- java.lang.Object
 - 
- ch.qos.logback.core.net.QueueFactory
 
 
- 
@Deprecated(since="2022-01-27") public class QueueFactory extends java.lang.ObjectDeprecated.This internal logback API is not supported by AEM as a Cloud Service.Factory forQueueinstances. 
- 
- 
Constructor Summary
Constructors Constructor Description QueueFactory()Deprecated. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <E> java.util.concurrent.LinkedBlockingDeque<E>newLinkedBlockingDeque(int capacity)Deprecated.Creates a newLinkedBlockingDequewith the givencapacity. 
 - 
 
- 
- 
Method Detail
- 
newLinkedBlockingDeque
public <E> java.util.concurrent.LinkedBlockingDeque<E> newLinkedBlockingDeque(int capacity)
Deprecated.Creates a newLinkedBlockingDequewith the givencapacity. In case the given capacity is smaller than one it will automatically be converted to one.- Type Parameters:
 E- the type of elements held in the queue- Parameters:
 capacity- the capacity to use for the queue- Returns:
 - a new instance of 
ArrayBlockingQueue 
 
 - 
 
 -