org.davic.mpeg.sections
Class TimeOutEvent
java.lang.Object
java.util.EventObject
org.davic.mpeg.sections.SectionFilterEvent
org.davic.mpeg.sections.EndOfFilteringEvent
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
Fields inherited from class java.util.EventObject |
source |
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 java.util.EventObject |
toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
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 outappData
- application data that was passed to the startFiltering method
getSource
public java.lang.Object getSource()
- This returns the SectionFilter object which timed out
- Overrides:
getSource
in class EndOfFilteringEvent