1 20 package org.apache.mina.handler.chain; 21 22 import org.apache.mina.common.IoSession; 23 24 59 public interface IoHandlerCommand { 60 77 void execute(NextCommand next, IoSession session, Object message) 78 throws Exception ; 79 80 88 public interface NextCommand { 89 93 void execute(IoSession session, Object message) throws Exception ; 94 } 95 } 96 | Popular Tags |