I have a client application that communicates with a server. In this application the clients can send requests to the server in order to reserve hotel rooms. The problems is that, if I have one room left, it is possible that two clients get a reservation.
I have no idea how to avoid it, for this reason I have no code implemented to show. If I had to guess, I would implement like a singleton.
if (availableRooms()>0) {
synchronized(syncObject_) {
if (availableRooms()>0) {
makeReservation()
}
}
}
return instance_;
}
Is that an acceptable solution? Does it work?
double check locking. If he's synchronizing overthisas you advise or over a separate object is another decision. Both have advantages: the first one better readable code the latter is more robust. DB transactions are good here but not available in every DBMS. – Fabian Barney Jun 25 '11 at 16:02