Class SynchronizedList
- java.lang.Object
-
- org.apache.commons.collections.collection.SynchronizedCollection
-
- org.apache.commons.collections.list.SynchronizedList
-
- All Implemented Interfaces:
Serializable,Iterable,Collection,List
@Deprecated(since="2021-04-30") public class SynchronizedList extends SynchronizedCollection implements List
Deprecated.Commons Collections 3 is in maintenance mode. Commons Collections 4 should be used instead.Decorates anotherListto synchronize its behaviour for a multi-threaded environment.Methods are synchronized, then forwarded to the decorated list.
This class is Serializable from Commons Collections 3.1.
- Since:
- Commons Collections 3.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadd(int index, Object object)Deprecated.booleanaddAll(int index, Collection coll)Deprecated.static Listdecorate(List list)Deprecated.Factory method to create a synchronized list.Objectget(int index)Deprecated.intindexOf(Object object)Deprecated.intlastIndexOf(Object object)Deprecated.ListIteratorlistIterator()Deprecated.Iterators must be manually synchronized.ListIteratorlistIterator(int index)Deprecated.Iterators must be manually synchronized.Objectremove(int index)Deprecated.Objectset(int index, Object object)Deprecated.ListsubList(int fromIndex, int toIndex)Deprecated.-
Methods inherited from class org.apache.commons.collections.collection.SynchronizedCollection
add, addAll, clear, contains, containsAll, decorate, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
-
-
-
Method Detail
-
decorate
public static List decorate(List list)
Deprecated.Factory method to create a synchronized list.- Parameters:
list- the list to decorate, must not be null- Throws:
IllegalArgumentException- if list is null
-
addAll
public boolean addAll(int index, Collection coll)Deprecated.
-
lastIndexOf
public int lastIndexOf(Object object)
Deprecated.- Specified by:
lastIndexOfin interfaceList
-
listIterator
public ListIterator listIterator()
Deprecated.Iterators must be manually synchronized.synchronized (coll) { ListIterator it = coll.listIterator(); // do stuff with iterator }- Specified by:
listIteratorin interfaceList- Returns:
- an iterator that must be manually synchronized on the collection
-
listIterator
public ListIterator listIterator(int index)
Deprecated.Iterators must be manually synchronized.synchronized (coll) { ListIterator it = coll.listIterator(3); // do stuff with iterator }- Specified by:
listIteratorin interfaceList- Returns:
- an iterator that must be manually synchronized on the collection
-
-