Class ThreadIDFilter
java.lang.Object
com.ibm.websphere.logging.hpel.reader.filters.ThreadIDFilter
- All Implemented Interfaces:
- LogRecordHeaderFilter
Implementation of the 
LogRecordHeaderFilter interface for filtering out
 records not written by a thread with a given thread ID.- 
Constructor SummaryConstructorsConstructorDescriptionThreadIDFilter(int threadID) Creates a filter instance with a specified thread ID.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanaccept(RepositoryLogRecordHeader record) Checks if record should be accepted into the list.
- 
Constructor Details- 
ThreadIDFilterpublic ThreadIDFilter(int threadID) Creates a filter instance with a specified thread ID.- Parameters:
- threadID- ID that each record's thread ID will be compared to
 
 
- 
- 
Method Details- 
acceptDescription copied from interface:LogRecordHeaderFilterChecks if record should be accepted into the list.- Specified by:
- acceptin interface- LogRecordHeaderFilter
- Parameters:
- record- log record header to check
- Returns:
- trueif record should be included in the list;- falseotherwise.
 
 
-