I'd be happy to make the change over to the proposed new Queue interface in
the threading project over the weekend if there's no objections?

> So do we agree on the following?
>
>  public interface Queue {
>
>      public int size();
>
>      public void add(Object);
>
>      // blocking remove
>      public Object remove();
>      public Object remove(long timeout);
>
>      // non-blocking
>      public Object removeNoWait();
>
>      // peek - doesn't remove
>      public Object peek();
> }

James



_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

Reply via email to