public class TSynchronizedByteLists extends Object
public static TByteListwrap(TByteList list)
It is imperative that the user manually synchronize on the returned list when iterating over it:
TByteList list = TSynchronizedByteLists.wrap( new TByteArrayList() );
...
synchronized( list ) {
TByteIterator i = list.iterator(); // Must be in synchronized block
while ( i.hasNext() )
foo( i.next() );
}
Failure to follow this advice may result in non-deterministic behavior.
The returned list will be serializable if the specified list is serializable.
list - the list to be "wrapped" in a synchronized list.