Hi:
I meet a problem of lock. For example, A,B and C
want to book the same ticket at the same time. Then A will book it and B,C are locked. But when the lock is released by A, lockManager will notify all members, B and C. So that, B and C will try to book it at same time. I think, I need to create a FIFO array to store waitting members and let them book ticket in order. Please give me some advice. Thanks.
Paul