Package org.apache.mina.handler.chain
Interface IoHandlerCommand.NextCommand
-
- Enclosing interface:
- IoHandlerCommand
public static interface IoHandlerCommand.NextCommand
Represents an indirect reference to the nextIoHandlerCommand
of theIoHandlerChain
. This interface provides a way to forward the request to the nextIoHandlerCommand
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(IoSession session, java.lang.Object message)
Forwards the request to the nextIoHandlerCommand
in theIoHandlerChain
.
-
-
-
Method Detail
-
execute
void execute(IoSession session, java.lang.Object message) throws java.lang.Exception
Forwards the request to the nextIoHandlerCommand
in theIoHandlerChain
.- Throws:
java.lang.Exception
-
-