Serialized Form


Package com.nostra13.universalimageloader.core.assist.deque

Class com.nostra13.universalimageloader.core.assist.deque.LIFOLinkedBlockingDeque extends LinkedBlockingDeque<T> implements Serializable

serialVersionUID: -4114786347960826192L

Class com.nostra13.universalimageloader.core.assist.deque.LinkedBlockingDeque extends AbstractQueue<E> implements Serializable

serialVersionUID: -387911632671998426L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Reconstitute this deque from a stream (that is, deserialize it).

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Save the state of this deque to a stream (that is, serialize it).

Serial Data:
The capacity (int), followed by elements (each an Object) in the proper order, followed by a null
Throws:
IOException
Serialized Fields

capacity

int capacity
Maximum number of items in the deque


lock

ReentrantLock lock
Main lock guarding all access


notEmpty

Condition notEmpty
Condition for waiting takes


notFull

Condition notFull
Condition for waiting puts



Copyright © 2011-2014. All Rights Reserved.