The User Interface must allow the user to book a selected record. This action must interact with other concurrent clients and update the database accordingly
This sounds like if a client books a record, then all other clients that are displaying the same record must be automatically updated with the new value. What's a good strategy for implementing this? Should the server just notify every client of the updated record? Do we have to worry about this in non-networked mode? Thanks for any replies.
SCJP2
Sai Prasad
Ranch Hand
Joined: Feb 25, 2002
Posts: 560
posted
0
I think the spec is taling about synchronizing the concurrent update calls from multiple clients. You don't have to nofify any clients.