Package ch.qos.logback.core.util
Class COWArrayList<E>
- java.lang.Object
-
- ch.qos.logback.core.util.COWArrayList<E>
-
- All Implemented Interfaces:
Iterable<E>,Collection<E>,List<E>
@Deprecated(since="2022-01-27") public class COWArrayList<E> extends Object implements List<E>
Deprecated.This internal logback API is not supported by AEM as a Cloud Service.A GC-free lock-free thread-safe implementation of theListinterface for use cases where iterations over the list vastly out-number modifications on the list.Underneath, it wraps an instance of
CopyOnWriteArrayListand exposes a copy of the array used by that instance.Typical use:
COWArrayListlist = new COWArrayList(new Integer[0]); // modify the list list.add(1); list.add(2); Integer[] intArray = list.asTypedArray(); int sum = 0; // iteration over the array is thread-safe for(int i = 0; i < intArray.length; i++) { sum != intArray[i]; } If the list is not modified, then repetitive calls to
asTypedArray(),toArray()andtoArray(Object[])are guaranteed to be GC-free. Note that iterating over the list usingiterator()andlistIterator()are not GC-free.- Since:
- 1.1.10
-
-
Constructor Summary
Constructors Constructor Description COWArrayList(E[] modelArray)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadd(int index, E element)Deprecated.booleanadd(E e)Deprecated.booleanaddAll(int index, Collection<? extends E> col)Deprecated.booleanaddAll(Collection<? extends E> c)Deprecated.voidaddIfAbsent(E e)Deprecated.E[]asTypedArray()Deprecated.Return an array of type E[].voidclear()Deprecated.booleancontains(Object o)Deprecated.booleancontainsAll(Collection<?> c)Deprecated.Eget(int index)Deprecated.intindexOf(Object o)Deprecated.booleanisEmpty()Deprecated.Iterator<E>iterator()Deprecated.intlastIndexOf(Object o)Deprecated.ListIterator<E>listIterator()Deprecated.ListIterator<E>listIterator(int index)Deprecated.Eremove(int index)Deprecated.booleanremove(Object o)Deprecated.booleanremoveAll(Collection<?> col)Deprecated.booleanretainAll(Collection<?> col)Deprecated.Eset(int index, E element)Deprecated.intsize()Deprecated.List<E>subList(int fromIndex, int toIndex)Deprecated.Object[]toArray()Deprecated.<T> T[]toArray(T[] a)Deprecated.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
equals, hashCode, replaceAll, sort, spliterator
-
-
-
-
Constructor Detail
-
COWArrayList
public COWArrayList(E[] modelArray)
Deprecated.
-
-
Method Detail
-
size
public int size()
Deprecated.
-
isEmpty
public boolean isEmpty()
Deprecated.
-
contains
public boolean contains(Object o)
Deprecated.
-
toArray
public Object[] toArray()
Deprecated.
-
toArray
public <T> T[] toArray(T[] a)
Deprecated.
-
asTypedArray
public E[] asTypedArray()
Deprecated.Return an array of type E[]. The returned array is intended to be iterated over. If the list is modified, subsequent calls to this method will return different/modified array instances.- Returns:
-
addIfAbsent
public void addIfAbsent(E e)
Deprecated.
-
add
public boolean add(E e)
Deprecated.
-
remove
public boolean remove(Object o)
Deprecated.
-
containsAll
public boolean containsAll(Collection<?> c)
Deprecated.- Specified by:
containsAllin interfaceCollection<E>- Specified by:
containsAllin interfaceList<E>
-
addAll
public boolean addAll(Collection<? extends E> c)
Deprecated.
-
addAll
public boolean addAll(int index, Collection<? extends E> col)Deprecated.
-
removeAll
public boolean removeAll(Collection<?> col)
Deprecated.
-
retainAll
public boolean retainAll(Collection<?> col)
Deprecated.
-
clear
public void clear()
Deprecated.
-
lastIndexOf
public int lastIndexOf(Object o)
Deprecated.- Specified by:
lastIndexOfin interfaceList<E>
-
listIterator
public ListIterator<E> listIterator()
Deprecated.- Specified by:
listIteratorin interfaceList<E>
-
listIterator
public ListIterator<E> listIterator(int index)
Deprecated.- Specified by:
listIteratorin interfaceList<E>
-
-