Source of Buffer.java


  1: //Buffer.java
  2: //Buffer interface specifies methods called by Producer and Consumer.
  3: 
  4: public interface Buffer
  5: {
  6:    public void set( int value );  // place value into Buffer
  7:    public int get();              // return value from Buffer
  8: }