Uses of Interface
org.apache.mina.filter.FilterEvent
-
Packages that use FilterEvent Package Description org.apache.mina.core.filterchain org.apache.mina.core.service org.apache.mina.filter.firewall Classes that implement IoFilter and provide host blocking and throttling.org.apache.mina.filter.ssl Classes that implement IoFilter and provide Secure Sockets Layer functionality.org.apache.mina.filter.util Utility classes for the MINA filtering portion of the library.org.apache.mina.handler.multiton Enables creating a handler per session instead of having one handler for many sessions, using Multiton pattern. -
-
Uses of FilterEvent in org.apache.mina.core.filterchain
Methods in org.apache.mina.core.filterchain with parameters of type FilterEvent Modifier and Type Method Description void
IoFilter. event(IoFilter.NextFilter nextFilter, IoSession session, FilterEvent event)
Propagate an event up to theIoHandler
void
IoFilter.NextFilter. event(IoSession session, FilterEvent event)
Forwards an event to next filter.void
IoFilterAdapter. event(IoFilter.NextFilter nextFilter, IoSession session, FilterEvent event)
Propagate an event up to theIoHandler
void
DefaultIoFilterChain. fireEvent(FilterEvent event)
Fires aIoHandler.event(IoSession, FilterEvent)
event.void
IoFilterChain. fireEvent(FilterEvent event)
Fires aIoHandler.event(IoSession, FilterEvent)
event. -
Uses of FilterEvent in org.apache.mina.core.service
Methods in org.apache.mina.core.service with parameters of type FilterEvent Modifier and Type Method Description void
IoHandler. event(IoSession session, FilterEvent event)
Invoked when a filter event is fired.void
IoHandlerAdapter. event(IoSession session, FilterEvent event)
Invoked when a filter event is fired. -
Uses of FilterEvent in org.apache.mina.filter.firewall
Methods in org.apache.mina.filter.firewall with parameters of type FilterEvent Modifier and Type Method Description void
BlacklistFilter. event(IoFilter.NextFilter nextFilter, IoSession session, FilterEvent event)
Propagate an event up to theIoHandler
-
Uses of FilterEvent in org.apache.mina.filter.ssl
Classes in org.apache.mina.filter.ssl that implement FilterEvent Modifier and Type Class Description class
SslEvent
A SSL event sent bySslFilter
when the session is secured or not secured. -
Uses of FilterEvent in org.apache.mina.filter.util
Methods in org.apache.mina.filter.util with parameters of type FilterEvent Modifier and Type Method Description void
CommonEventFilter. event(IoFilter.NextFilter nextFilter, IoSession session, FilterEvent event)
Propagate an event up to theIoHandler
-
Uses of FilterEvent in org.apache.mina.handler.multiton
Methods in org.apache.mina.handler.multiton with parameters of type FilterEvent Modifier and Type Method Description void
SingleSessionIoHandler. event(FilterEvent event)
Deprecated.Invoked when a filter event is fired.void
SingleSessionIoHandlerAdapter. event(FilterEvent event)
Deprecated.Invoked when a filter event is fired.void
SingleSessionIoHandlerDelegate. event(IoSession session, FilterEvent event)
Deprecated.Delegates the method call to theSingleSessionIoHandler.event(FilterEvent)
method of the handler assigned to this session.
-