public static interface IoFilterChain.Entry
IoFilterChain
contains.Modifier and Type | Method | Description |
---|---|---|
void |
addAfter(String name,
IoFilter filter) |
Adds the specified filter with the specified name just after this entry.
|
void |
addBefore(String name,
IoFilter filter) |
Adds the specified filter with the specified name just before this entry.
|
IoFilter |
getFilter() |
|
String |
getName() |
|
IoFilter.NextFilter |
getNextFilter() |
|
void |
remove() |
Removes this entry from the chain it belongs to.
|
void |
replace(IoFilter newFilter) |
Replace the filter of this entry with the specified new filter.
|
String getName()
IoFilter getFilter()
IoFilter.NextFilter getNextFilter()
IoFilter.NextFilter
of the filter.void addBefore(String name, IoFilter filter)
name
- The Filter's namefilter
- The added Filtervoid addAfter(String name, IoFilter filter)
name
- The Filter's namefilter
- The added Filtervoid replace(IoFilter newFilter)
newFilter
- The new filter that will be put in the chainvoid remove()
Copyright © 2004–2018 Apache MINA Project. All rights reserved.