Package org.palladiosimulator.experimentanalysis
This package contains all classes related to the default (abstract) sliding window implementation.
-
Interface Summary Interface Description ISlidingWindowListener This interface has to be implemented that want to observeSlidingWindows.ISlidingWindowMoveOnStrategy Each window instance has an attachedISlidingWindowMoveOnStrategythat defines how the collected data (i.e., the measurements) are adjusted when the window moves forward. -
Class Summary Class Description Activator DiscardAllElementsPriorToLowerBoundStrategy An implementation ofISlidingWindowMoveOnStrategythat discards all the measurements which are prior to the new lower bound of theSlidingWindowafter it moved on.FlushWindowStrategy Implementation of a trivialISlidingWindowMoveOnStrategywhich just discards all the window data once it moves on.KeepLastElementPriorToLowerBoundStrategy An implementation ofISlidingWindowMoveOnStrategythat keeps exactly one measurement that is prior to the new lower bound of theSlidingWindowafter it moved on.SlidingWindow This class is an implementation of a fixed length sliding window.
Purpose of this window is to collect measurements of a certain kind that occur within the window length.SlidingWindowRecorder This class implements aRecorderwhich writes incoming data into a sliding window rather than passing it on to a persistence framework like EDP2.