Uses of Interface
org.jcsp.util.filter.Filter
-
Packages that use Filter Package Description org.jcsp.net.dynamic Supports dynamic operations over the JCSP.NET infrastructure.org.jcsp.util.filter This defines filtering channels that can apply transformations to objects as they are read and/or written. -
-
Uses of Filter in org.jcsp.net.dynamic
Methods in org.jcsp.net.dynamic that return Filter Modifier and Type Method Description FilterDynamicClassLoader.DynamicClassLoaderUserObject. getChannelRxFilter()Returns the RX filter to be used at the receiving end of a channel if dynamic class loading is to be supported over that channel.FilterDynamicClassLoader. getChannelRxFilter()Returns the RX filter to be used at the receiving end of a channel if dynamic class loading is to be supported over that channel.FilterDynamicClassLoader.DynamicClassLoaderUserObject. getChannelTxFilter()Returns the TX filter to be used at the sending end of a channel if dynamic class laoding is to be supported over that channel.FilterDynamicClassLoader. getChannelTxFilter()Returns the TX filter to be used at the sending end of a channel if dynamic class loading is to be supported over that channel.static FilterDynamicClassLoader. getNonDynamicClassLoadingRxFilter()An alternative RX filter that does not support dynamic class loading but will properly unmarshal objects wrapped up by a TX filter. -
Uses of Filter in org.jcsp.util.filter
Classes in org.jcsp.util.filter that implement Filter Modifier and Type Class Description classPoisonFilterThis filter will throw aPoisonExceptionwhenfilter(Object)is called.Methods in org.jcsp.util.filter that return Filter Modifier and Type Method Description FilterFilteredAltingChannelInput. getReadFilter(int index)FilterFilteredSharedChannelInputWrapper. getReadFilter(int index)FilterReadFiltered. getReadFilter(int index)Returns the read filter installed at the given index.FilterFilteredSharedChannelOutputWrapper. getWriteFilter(int index)FilterWriteFiltered. getWriteFilter(int index)Returns the write filter installed at the given index.Methods in org.jcsp.util.filter with parameters of type Filter Modifier and Type Method Description voidFilteredAltingChannelInput. addReadFilter(Filter filter)voidFilteredAltingChannelInput. addReadFilter(Filter filter, int index)voidFilteredSharedChannelInputWrapper. addReadFilter(Filter filter)voidFilteredSharedChannelInputWrapper. addReadFilter(Filter filter, int index)voidReadFiltered. addReadFilter(Filter filter)Installs a read filter defining a transformation to be applied by thereadmethod of the channel end.voidReadFiltered. addReadFilter(Filter filter, int index)Installs a read filter defining a transformation to be applied by thereadmethod of the channel end at a specific index.voidFilteredSharedChannelOutputWrapper. addWriteFilter(Filter filter)voidFilteredSharedChannelOutputWrapper. addWriteFilter(Filter filter, int index)voidWriteFiltered. addWriteFilter(Filter filter)Installs a write filter defining a transformation to be applied by thewritemethod of the channel end.voidWriteFiltered. addWriteFilter(Filter filter, int index)Installs a write filter defining a transformation to be applied by thewritemethod of the channel end at a specific index.voidFilteredAltingChannelInput. removeReadFilter(Filter filter)voidFilteredSharedChannelInputWrapper. removeReadFilter(Filter filter)voidReadFiltered. removeReadFilter(Filter filter)Removes the first read filter (lowest index) matching the filter given as a parameter.voidFilteredSharedChannelOutputWrapper. removeWriteFilter(Filter filter)voidWriteFiltered. removeWriteFilter(Filter filter)Removes the first write filter (lowest index) matching the filter given as a parameter.Constructors in org.jcsp.util.filter with parameters of type Filter Constructor Description FilteredChannelFactory(Filter[] readFilters, Filter[] writeFilters)All channels constructed with this Factory instance will have the specifiedFilterobjects inserted into them.
-