I have a client-server process that after a long-running operation (2-5 minutes) server side, ask the user to confirm or change the operation results.
User can take an hour or more to check the work done by the service, make changes and send those back to service.
In a perfect world nobody would change underlining source data used by the service to build the operation results.. but this isn't a perfect world!
How can I lock in order to prevent damage on my source data? I don't want SQL table lock... I'm thinking about a software mechanism like an in-memory table with all my operation requests and some interlock condition in order to put in a wait state operation that can damage other operation data.
Any other hint about?
Edit
More info about the process is probably necessary..
I have a timestamped entity that represent a point in time of an electrical network topology. The entity contains a list of all elements not energized.
The server process when called must take all entities not already processed and for each element create a list of
public class ElementRecord{
public string ElementName {get;set;}
public DateTime OffTimeStamp {get;set;}
public DateTime OnTimeStamp {get;set;}
}
Based on some business rules the server process aggregate the elements and wait for user ack or changes.
The problem is that after entities are loaded, real network can change and the table will change; also in a single point of time more elements can be de-energized so server process must invalidate. If user UI is already changing data I have to alert soon that probably some data is invalid.
What you will do?
I has encountered the similar requirement in one past project. Our solution was: after the server finished all operation, we copied all data which needs user to confirm to some temp data tables with timestamp for every row. And then, send mail to user to ask confirming, after the confirming, merge the temp data tables to our real data tables. We could not lock any data table, because other users need to change the table online.