Package org.jcsp.util.filter
Interface Filter
-
- All Known Implementing Classes:
PoisonFilter
public interface Filter
Interface for channel plug-ins that define filtering operations - transformations on the data as it is read or written. A channel (or channel end) that supports filtering will implement theReadFiltered
orWriteFiltered
interface which allows instances ofFilter
to be installed or removed from the channel.- Author:
- Quickstone Technologies Limited
- See Also:
FilteredChannel
,FilteredChannelEnd
,ReadFiltered
,WriteFiltered
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
filter(Object obj)
Applies the filter operation.
-