/**
 * DiningServer.java
 *
 * This class contains the methods called by the  philosophers
 */

public interface DiningServer 
{  
   // called by a philosopher when they wish to eat 
   public void takeForks(int philosopherNumber);
  
   // called by a philosopher when they are finished eating 
   public void returnForks(int philosopherNumber);
}
