|   | OutputAdapterCollectionRemoveMeasurements Method | 
        
        
            This function removes a range of measurements from the internal measurement queues. Note that the requested
            
total will be removed from each 
IOutputAdapter implementation in this
            
OutputAdapterCollection.
            
 GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic virtual void RemoveMeasurements(
	int total
)
Public Overridable Sub RemoveMeasurements ( 
	total As Integer
)
public:
virtual void RemoveMeasurements(
	int total
)
abstract RemoveMeasurements : 
        total : int -> unit 
override RemoveMeasurements : 
        total : int -> unit function RemoveMeasurements(total);
Parameters
- total  Int32
- Total measurements to remove from the each IOutputAdapter queue.
Implements
IOutputAdapterRemoveMeasurements(Int32) Remarks
Remarks
            This method is typically only used to curtail size of measurement queue if it's getting too large.  If more points are
            requested than there are points available - all points in the queue will be removed.
            
 See Also
See Also