EDIT - The implementation Language is Java.
I want to make a simple fault tolerant system.
- Object A - This object contains the decision logic for the system.
- Object B - This object will be used control the fault tolerance
My initial ideas are to have object A update object B with the value of variables that are to be saved to a data file. Then object B will create a data file that will be saved to a hard drive of the platform system.
My question is: how would I create a data file using the values of object variables and then retrieve those variables from the data file? when they are called.
I am happy just to write variable values to a notepad file and then recall them from the file