the getOldestStoredActivations return only one value of a circual buffer of stored activations that it's continously filled by Evonet.
In the case on which the Evonet is updated too fast respect to the velocity of consuming the values on the buffer, the GUI will cycle forever trying to consume all oldest activations.
The best solution would be to use the ResourceLocker to lock on the Evonet but at the moment of comment writing this is not possible because to use ResourceLocker we should know who is the ResourceUsers with shareResourcesWith in order to use the lock and to use the getResource method.
But because we planned to put into each ParameterSettable an attribute storing the ConfigurationParameter used for configuring it, and to also put inside the ConfigurationParameter an attribute for storing all Resources declared during the configuration, the complete solution of this problem is postponed to above planned modification.
In fact, after that modification, it would be possible to shareResourceWith the ConfigurationParameter used for configure the Evonet and then use the ResourceLocker.
For now, we simple add a safe break to avoid to cycle forever, but it means that the data might be displayed wrongly.