org.davic.mpeg.sections
Class TimeOutEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.davic.mpeg.sections.SectionFilterEvent
          extended by org.davic.mpeg.sections.EndOfFilteringEvent
              extended by org.davic.mpeg.sections.TimeOutEvent
All Implemented Interfaces:
java.io.Serializable

public class TimeOutEvent
extends EndOfFilteringEvent

This event is generated if section filter operations time out within the period specified by the setTimeOut() method. For a SimpleSectionFilter it will be generated if no sections arrive within the specified period. For a TableSectionFilter, it will be generated if the complete table does not arrive within the specified time. For a RingSectionFilter, it will be generated if the specified time has elapsed since the arrival of the last section being successfully filtered.

Version:
created for DAVIC 1.3.1
See Also:
Serialized Form

Constructor Summary
TimeOutEvent(SectionFilter f, java.lang.Object appData)
          This constructs an TimeOutEvent event for the specified SectionFilter object.
 
Method Summary
 java.lang.Object getSource()
          This returns the SectionFilter object which timed out
 
Methods inherited from class org.davic.mpeg.sections.SectionFilterEvent
getAppData
 
Methods inherited from class java.util.EventObject
toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TimeOutEvent

public TimeOutEvent(SectionFilter f,
                    java.lang.Object appData)
This constructs an TimeOutEvent event for the specified SectionFilter object.

Parameters:
f - the SectionFilter object which timed out
appData - application data that was passed to the startFiltering method
Method Detail

getSource

public java.lang.Object getSource()
This returns the SectionFilter object which timed out

Overrides:
getSource in class EndOfFilteringEvent