You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/07/06 16:08:34 UTC

svn commit: r1500270 - /commons/proper/collections/trunk/src/site/xdoc/userguide.xml

Author: tn
Date: Sat Jul  6 14:08:33 2013
New Revision: 1500270

URL: http://svn.apache.org/r1500270
Log:
Remove references to removed Buffer interface.

Modified:
    commons/proper/collections/trunk/src/site/xdoc/userguide.xml

Modified: commons/proper/collections/trunk/src/site/xdoc/userguide.xml
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/site/xdoc/userguide.xml?rev=1500270&r1=1500269&r2=1500270&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/site/xdoc/userguide.xml (original)
+++ commons/proper/collections/trunk/src/site/xdoc/userguide.xml Sat Jul  6 14:08:33 2013
@@ -40,7 +40,6 @@ This document highlights some key featur
          <li><a href='#Bidirectional%20Maps'>Bidirectional Maps</a></li>
       </ul>
     </li>
-    <li><a href='#Queues%20and%20Buffers'>Queues and Buffers</a></li>
     <li><a href='#Bags'>Bags</a></li>
   </ul>
 <subsection name='Note On Synchronization'>
@@ -141,26 +140,6 @@ Implementations are provided for each bi
 </subsection>
 </section>
 
-<section name="Queues and Buffers">
-
-<p>
-A new interface hierarchy has been added to support queues and buffers - <code>Buffer.</code>
-These represent collections that have a well defined removal order.
-</p>
-<source>
-Buffer buffer = new UnboundedFifoBuffer();
-buffer.add("ONE");
-buffer.add("TWO");
-buffer.add("THREE");
-buffer.remove();  // removes and returns the next in order, "ONE" as this is a FIFO
-buffer.remove();  // removes and returns the next in order, "TWO" as this is a FIFO
-</source>
-<p>
-Implementations are provided for FIFO (queue), LIFO (stack) and Priority (removal in comparator order).
-</p>
-
-</section>
-
 <section name="Bags">
 
 <p>