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

Comparing jsr166/src/main/java/util/concurrent/BlockingDeque.java (file contents):
Revision 1.3 by dl, Tue Mar 8 17:52:07 2005 UTC vs.
Revision 1.4 by jsr166, Tue Apr 26 01:17:18 2005 UTC

# Line 5 | Line 5
5   */
6  
7   package java.util.concurrent;
8 < import java.util.*;  
8 > import java.util.*;
9  
10   /**
11   * A {@link Deque} that additionally supports operations that wait for
# Line 31 | Line 31 | import java.util.*;
31   *    <td>{@link #putFirst putFirst(e)}</td>
32   *    <td>{@link #offerFirst(Object, long, TimeUnit) offerFirst(e, time, unit)}</td>
33   *    <td>{@link #putLast putLast(e)}</td>
34 < *    <td>{@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)}</td>
34 > *    <td>{@link #offerLast(Object, long, TimeUnit) offerLast(e, time, unit)}</td>
35   *  </tr>
36   *  <tr>
37   *    <td><b>Remove</b></td>
# Line 193 | Line 193 | public interface BlockingDeque<E> extend
193       */
194      void put(E o) throws InterruptedException;
195  
196 <    /**
196 >    /**
197       * Inserts the specified element as the lest element of this
198       * deque, if possible.  When using deques that may impose
199       * insertion restrictions (for example capacity bounds), method

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines