Package org.apache.mina.handler.chain
Interface IoHandlerCommand.NextCommand
-
- Enclosing interface:
- IoHandlerCommand
public static interface IoHandlerCommand.NextCommandRepresents an indirect reference to the nextIoHandlerCommandof theIoHandlerChain. This interface provides a way to forward the request to the nextIoHandlerCommand.- Author:
- Apache MINA Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute(IoSession session, Object message)Forwards the request to the nextIoHandlerCommandin theIoHandlerChain.
-
-
-
Method Detail
-
execute
void execute(IoSession session, Object message) throws Exception
Forwards the request to the nextIoHandlerCommandin theIoHandlerChain.- Parameters:
session- The current sessionmessage- The message to pass on- Throws:
Exception- If anything went wrong
-
-