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 java.util.AbstractQueue<E> implements Serializable

serialVersionUID: -387911632671998426L

Serialization Methods

readObject

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

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.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:
java.io.IOException
Serialized Fields

capacity

int capacity
Maximum number of items in the deque


lock

java.util.concurrent.locks.ReentrantLock lock
Main lock guarding all access


notEmpty

java.util.concurrent.locks.Condition notEmpty
Condition for waiting takes


notFull

java.util.concurrent.locks.Condition notFull
Condition for waiting puts



Copyright © 2011-2013. All Rights Reserved.