ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166x/BlockingDeque.java
(Generate patch)

Comparing jsr166/src/jsr166x/BlockingDeque.java (file contents):
Revision 1.2 by jsr166, Mon Nov 16 04:16:42 2009 UTC vs.
Revision 1.3 by jsr166, Tue Sep 7 06:03:19 2010 UTC

# Line 187 | Line 187 | public interface BlockingDeque<E> extend
187      /**
188       * Adds the specified element as the last element of this deque,
189       * waiting if necessary for space to become available.  This
190 <     * method is equivalent to to putLast
190 >     * method is equivalent to putLast
191       * @param o the element to add
192       * @throws InterruptedException if interrupted while waiting.
193       * @throws NullPointerException if the specified element is <tt>null</tt>.
# Line 200 | Line 200 | public interface BlockingDeque<E> extend
200       * insertion restrictions (for example capacity bounds), method
201       * <tt>offer</tt> is generally preferable to method {@link
202       * Collection#add}, which can fail to insert an element only by
203 <     * throwing an exception.  This method is equivalent to to
203 >     * throwing an exception.  This method is equivalent to
204       * offerLast
205       *
206       * @param o the element to add.
# Line 214 | Line 214 | public interface BlockingDeque<E> extend
214      /**
215       * Retrieves and removes the first element of this deque, waiting
216       * if no elements are present on this deque.
217 <     * This method is equivalent to to takeFirst
217 >     * This method is equivalent to takeFirst
218       * @return the head of this deque
219       * @throws InterruptedException if interrupted while waiting.
220       */
# Line 223 | Line 223 | public interface BlockingDeque<E> extend
223      /**
224       * Retrieves and removes the first element of this deque, waiting
225       * if necessary up to the specified wait time if no elements are
226 <     * present on this deque.  This method is equivalent to to
226 >     * present on this deque.  This method is equivalent to
227       * pollFirst
228       * @param timeout how long to wait before giving up, in units of
229       * <tt>unit</tt>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines