I am building a stock system which will be used over an office LAN with multiple users. I have a query about using the synchronized keyword to update the stock correctly. What I wish to do is allow multiple users to update the stock but of course only allow one user to update at one time. I have created a method as follows for the update of stock:
public static synchronized boolean UpdateXYZStock(Stock so){
//update code
}
Is this the correct way to do this?
Thanks
S.
