コード例 #1
0
        public void RightHandedEaterGetsFood(Philosopher eater, TakeBitEventArgs e)
        {
            eater.RightChopstick.WaitOne();
            eater.LeftChopstick.WaitOne();

            Eat(eater);
            eater.RightChopstick.Set();
            eater.LeftChopstick.Set();
        }
コード例 #2
0
ファイル: Table.cs プロジェクト: alexandercessac/Lib
        public void RightHandedEaterGetsFood(Philosopher eater, TakeBitEventArgs e)
        {

            eater.RightChopstick.WaitOne();
            eater.LeftChopstick.WaitOne();

            Eat(eater);
            eater.RightChopstick.Set();
            eater.LeftChopstick.Set();



        }
コード例 #3
0
ファイル: Table.cs プロジェクト: alexandercessac/Lib
 protected virtual void OnTakeBiteEvent(Philosopher eater, TakeBitEventArgs e)
 {
     TakeBiteEvent?.Invoke(eater, e);
 }
コード例 #4
0
ファイル: Table.cs プロジェクト: alexandercessac/Lib
 public void Eat(TakeBitEventArgs e)
 {
     IsEating = true;
     EatFromTable?.Invoke(this, e);
 }
コード例 #5
0
 protected virtual void OnTakeBiteEvent(Philosopher eater, TakeBitEventArgs e)
 {
     TakeBiteEvent?.Invoke(eater, e);
 }
コード例 #6
0
 public void Eat(TakeBitEventArgs e)
 {
     IsEating = true;
     EatFromTable?.Invoke(this, e);
 }