Class OutageSvcTimesList

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable, java.lang.Iterable<Outage>, java.util.Collection<Outage>, java.util.List<Outage>, java.util.RandomAccess

    public class OutageSvcTimesList
    extends java.util.ArrayList<Outage>
     This contains a list of service lost/regained set/pair.
    
      Also maintains the outage/down time each time it is calculated and the time
      from which this was calculated - this is done so when the view outage time for
      a window is calculated, the same calculations are not done on the node multiple
      times
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class java.util.AbstractList

        modCount
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addSvcTime​(long losttime)
      Add a new service time entry
      void addSvcTime​(long losttime, long regainedtime)
      Add a new servicetime entry
      long getDownTime​(long curTime, long rollingWindow)
      Calculate the total downtime in this list of service times for the last 'rollinWindow' time starting at 'curTime'
      java.util.List<OutageSince> getServiceOutages​(java.lang.String nodeName, long curTime, long rollingWindow)
      Returns a list of outage / out-since pairs for the rolling window specified
      java.lang.String toString()
      toString
      • Methods inherited from class java.util.ArrayList

        add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
      • Methods inherited from class java.util.AbstractCollection

        containsAll
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, stream, toArray
      • Methods inherited from interface java.util.List

        containsAll
    • Constructor Detail

      • OutageSvcTimesList

        public OutageSvcTimesList()
        Default constructor
        See Also:
        ArrayList()
      • OutageSvcTimesList

        public OutageSvcTimesList​(int initialCapacity)
        Constructor
        Parameters:
        initialCapacity - a int.
        See Also:
        ArrayList(int initCapacity)
    • Method Detail

      • addSvcTime

        public void addSvcTime​(long losttime,
                               long regainedtime)
        Add a new servicetime entry
        Parameters:
        losttime - time at which service was lost
        regainedtime - time at which service was regained
      • addSvcTime

        public void addSvcTime​(long losttime)
        Add a new service time entry
        Parameters:
        losttime - time at which service was lost
      • getDownTime

        public long getDownTime​(long curTime,
                                long rollingWindow)
        Calculate the total downtime in this list of service times for the last 'rollinWindow' time starting at 'curTime'
        Parameters:
        curTime - the current time from which the down time is to be calculated
        rollingWindow - the last window for which the downtime is to be calculated
        Returns:
        total down time in service times in this list
      • getServiceOutages

        public java.util.List<OutageSince> getServiceOutages​(java.lang.String nodeName,
                                                             long curTime,
                                                             long rollingWindow)
        Returns a list of outage / out-since pairs for the rolling window specified
        Parameters:
        curTime - the current time from which the down time is to be calculated
        rollingWindow - the last window for which the down time is to be calculated
        nodeName - a String object.
        Returns:
        a List object.
      • toString

        public java.lang.String toString()

        toString

        Overrides:
        toString in class java.util.AbstractCollection<Outage>
        Returns:
        a String object.