public static void readActionQueue(MarshallerReaderContext context) throws IOException, ClassNotFoundException {
ReteooWorkingMemory wm = (ReteooWorkingMemory) context.wm;
Queue actionQueue = wm.getActionQueue();
while ( context.readShort() == PersisterEnums.WORKING_MEMORY_ACTION ) {
actionQueue.offer( PersisterHelper.readWorkingMemoryAction( context ) );
}
}
public static void readTruthMaintenanceSystem(MarshallerReaderContext context) throws IOException {
ObjectInputStream stream = context.stream;