Selective event processing in ExecutorFilter
--------------------------------------------
Key: DIRMINA-400
URL: https://issues.apache.org/jira/browse/DIRMINA-400
Project: MINA
Issue Type: New Feature
Components: Filter
Reporter: Trustin Lee
Assignee: Trustin Lee
Fix For: 2.0.0-M1
Previous implementation of ExecutorFilter forwarded only sessionOpened,
sessionIdle, sessionClosed, messageReceived and messageSent events to the
executor. It often becomes a cause of resource contention for other I/O events
such as filterWrite.
If we can provide a set of event types that has to be forwarded to the
executor, we will be able to apply more sophisticated thread model. The
following is a typical usage example:
chain.addLast("executor1", new ExecutorFilter()); // Default behavior of
ExecutorFilter will be retained.
chain.addLast("codec", new ProtocolCodecFilter(...));
chain.addLast("logger", new LoggingFilter());
chain.addLast("executor2", new ExecutorFilter(IoEventType.WRITE,
IoEventType.CLOSE));
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.